Update exectool.php

This commit is contained in:
Namhyeon Go 2020-07-10 17:16:30 +09:00 committed by GitHub
parent 1ee86700cd
commit 0896073b9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -206,6 +206,11 @@ if(!is_fn("exec_command")) {
$return = ob_get_clean();
// PID is integer
if(array_key_equals("async", $options, true)) {
$return = intval(rtrim($return));
};
return $return;
}
}