3v4l.org

run code in 300+ PHP versions simultaneously
<?php function logger($filename) { $fh = fopen($filename, 'w'); while (true) { $line = yield; fwrite($fh, $line . PHP_EOL); } } $log = logger(__FILE__); $log->send('Hello world!');

preferences:
41.67 ms | 402 KiB | 5 Q