We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
exec
system
It hangs in code which has exec or system
$output=null; $retval=null; exec('whoami', $output, $retval); echo("Returned with status {$retval} and output:\n"); echo("1"); print_r($output);