3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(-1); $command = 'sleep 30'; $pipes = array(); $error = $output = ""; $process = proc_open( $command, array( 0 => array('pipe', 'r'), 1 => array('pipe', 'w'), 2 => array('pipe', 'w') ), $pipes ); usleep(1000); if (is_resource($process)) { $status = proc_get_status($process); printf("running: %d exitcode: %d\n", $status['running'], $status['exitcode']); print "killing proc_open'ed process\n"; posix_kill($status['pid'], 9); $status = proc_get_status($process); printf("running: %d exitcode: %d\n", $status['running'], $status['exitcode']); } else { printf("proc_open failed for command %s\n", $command); }
Output for 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Call to undefined function proc_open() in /in/0nQLR:10 Stack trace: #0 {main} thrown in /in/0nQLR on line 10
Process exited with code 255.
Output for 8.0.13
fork has been disabled for security reasons
Process exited with code 255.
Output for 7.3.32 - 7.3.33, 7.4.33
fork has been disabled for security reasons
Process exited with code 127.
Output for 7.1.20, 7.2.6 - 7.2.33, 7.3.12 - 7.3.31, 7.4.0 - 7.4.32
Warning: proc_open() has been disabled for security reasons in /in/0nQLR on line 17 proc_open failed for command sleep 30
Output for 5.0.4 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.14, 7.1.0, 7.1.7, 7.2.0
running: 0 exitcode: 127 killing proc_open'ed process running: 0 exitcode: -1
Output for 7.0.20, 7.1.5 - 7.1.6
running: 1 exitcode: -1 killing proc_open'ed process running: 1 exitcode: -1
Output for 5.0.0 - 5.0.3
running: 0 exitcode: 127 killing proc_open'ed process running: 1 exitcode: -1
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: proc_get_status() in /in/0nQLR on line 21
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: proc_get_status() in /in/0nQLR on line 21
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: proc_get_status() in /in/0nQLR on line 21

preferences:
274.24 ms | 401 KiB | 357 Q