3v4l.org

run code in 300+ PHP versions simultaneously
<?php <?php // without OB echo 'before_ob' . PHP_EOL; ob_start(); // first level begins // this line will be in $second echo 'second_ob' . PHP_EOL; ob_start(); // second level begins // these 2 lines will be in $first echo 'third_ob' . PHP_EOL; echo '------' . PHP_EOL; $first = ob_get_clean() . 1; // this line will be in second // but w/o previous 2 lines echo '------' . PHP_EOL; $second = ob_get_clean() . 2; // this will output $first consisting of 2 lines. // and $second without them. var_dump($first, $second);
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.7
Parse error: syntax error, unexpected '<', expecting end of file in /in/frk6M on line 3
Process exited with code 255.

preferences:
169.5 ms | 1395 KiB | 36 Q