3v4l.org

run code in 300+ PHP versions simultaneously
<?php chdir('/tmp'); touch('test1.php'); touch('test2.php'); touch('test3.php'); $it = new GlobIterator("./*.php"); foreach ($it as $p) echo $p->getFilename() . " " . ($p->isFile() ? "IS" : "IS NOT") . " a file\n"; $it = new GlobIterator("*.php"); foreach ($it as $p) echo $p->getFilename() . " " . ($p->isFile() ? "IS" : "IS NOT") . " a file\n";
Output for git.master, git.master_jit
test1.php IS a file test2.php IS a file test3.php IS a file xax.php IS a file
Process exited with code 139.
Output for rfc.property-hooks
test1.php IS a file test2.php IS a file test3.php IS a file
Process exited with code 139.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
83.55 ms | 401 KiB | 8 Q