3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* * The example shows how to pause the timer for measuring time at different stages. * Once watch is started, we can call `pause` method to pause the watch. * If watch is paused, we can start it again to start timer. In that case, time will be added to timer. */ // Load Composer auto loader require_once "../vendor/autoload.php"; use Phpreboot\Stopwatch\StopWatch; // Create an instance of StopWatch $stopWatch = new StopWatch(); $innerIterator = 0; for ($i = 1; $i <= 10; $i++) { printf("Iteration %d starting.\n", $i); $stopWatch->start(); for ($j = 0; $j < 1000; $j++) { $innerIterator++; } $stopWatch->pause(); printf("Iteration %d watch stopped, not other task is starting..\n", $i); for ($k = 0; $k < 1000; $k++) { $timeWaster = $k; } } printf("Time taken by first loop (\$j), for %d iterations was: %f seconds.\n", $innerIterator, $stopWatch->getTime());
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.4, 8.3.6
Warning: require_once(): open_basedir restriction in effect. File(../vendor/autoload.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/GFDHf on line 10 Warning: require_once(../vendor/autoload.php): Failed to open stream: Operation not permitted in /in/GFDHf on line 10 Fatal error: Uncaught Error: Failed opening required '../vendor/autoload.php' (include_path='.:') in /in/GFDHf:10 Stack trace: #0 {main} thrown in /in/GFDHf on line 10
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Warning: require_once(): open_basedir restriction in effect. File(../vendor/autoload.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/GFDHf on line 10 Warning: require_once(../vendor/autoload.php): Failed to open stream: Operation not permitted in /in/GFDHf on line 10 Fatal error: Uncaught Error: Failed opening required '../vendor/autoload.php' (include_path='.:') in /in/GFDHf:10 Stack trace: #0 {main} thrown in /in/GFDHf on line 10
Process exited with code 255.
Output for 8.0.13
Warning: require_once(../vendor/autoload.php): Failed to open stream: No such file or directory in /in/GFDHf on line 10 Fatal error: Uncaught Error: Failed opening required '../vendor/autoload.php' (include_path='.:') in /in/GFDHf:10 Stack trace: #0 {main} thrown in /in/GFDHf on line 10
Process exited with code 255.
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0, 7.3.32 - 7.3.33, 7.4.33
Warning: require_once(../vendor/autoload.php): failed to open stream: No such file or directory in /in/GFDHf on line 10 Fatal error: require_once(): Failed opening required '../vendor/autoload.php' (include_path='.:') in /in/GFDHf on line 10
Process exited with code 255.
Output for 7.1.26 - 7.1.33, 7.2.17 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.32
Warning: require_once(): open_basedir restriction in effect. File(../vendor/autoload.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/GFDHf on line 10 Warning: require_once(../vendor/autoload.php): failed to open stream: Operation not permitted in /in/GFDHf on line 10 Fatal error: require_once(): Failed opening required '../vendor/autoload.php' (include_path='.:') in /in/GFDHf on line 10
Process exited with code 255.
Output for 7.1.20, 7.2.6 - 7.2.8
Warning: require_once(): open_basedir restriction in effect. File(../vendor/autoload.php) is not within the allowed path(s): (/tmp:/in) in /in/GFDHf on line 10 Warning: require_once(../vendor/autoload.php): failed to open stream: Operation not permitted in /in/GFDHf on line 10 Fatal error: require_once(): Failed opening required '../vendor/autoload.php' (include_path='.:') in /in/GFDHf on line 10
Process exited with code 255.

preferences:
176.94 ms | 402 KiB | 214 Q