3v4l.org

run code in 300+ PHP versions simultaneously
<?php $File = new SplFileObject(__FILE__); echo 'First dump: Just cast as string', "\n"; echo htmlspecialchars((string) $File), "\n"; echo 'Ok, now let\'s iterate echoing out $line var created by foreach', "\n"; foreach($File as $line) { echo htmlspecialchars($line) , "\n"; } echo "\n"; echo 'Ok, now let\'s echo out the object as string again', "\n"; echo htmlspecialchars((string) $File), "\n";

preferences:
33.62 ms | 402 KiB | 5 Q