Lines Matching full:exit
88 * Exit codes translation table.
90 * User-defined errors must use exit codes in the 64-113 range.
99 128 => 'Invalid exit argument',
241 * @return int The exit status code
262 * exits with a non-zero exit code.
330 … // last exit code is output on the fourth pipe and caught to work around --enable-sigchild
335 …commandline .= 'pid=$!; echo $pid >&3; wait $pid 2>/dev/null; code=$?; echo $code >&3; exit $code';
748 * Returns the exit code returned by the process.
750 * @return int|null The exit status code, null if the Process is not terminated
760 * Returns a string representation for the exit code returned by the process.
762 * This method relies on the Unix exit code status standardization
765 …* @return string|null A string representation for the exit status code, null if the Process is not…
916 * @return int|null The exit-code of the process or null if it's not running
1349 // In PHP < 8.3, "proc_get_status" only returns the correct exit status on the first call.
1351 // retrieved exit status for consistent results in later calls, mimicking PHP 8.3 behavior.