3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str=<<<TXT test something/action controller/test controller/another controller/action/something action action/test controller/another/somethingelse TXT; $config = array( 'test' => 'The description of test', 'something/action' => 'Some action description', 'controller/another' => 'Another description', 'controller/action/*' => 'This should match the `controller/action/blah` and everything similar like: `controller/action/something` and give this description', 'action' => 'Action description', 'action/*' => 'As the 2nd above, this should match the `action/test` itself, and similar like `action/anothertest` URI' ); foreach(explode("\n",$str) as $line) { $line=trim($line); $dkey=array_filter(array_keys($config),function($key)use($line){return fnmatch($key,$line);}); if(count($dkey)<=0) { echo "(no description)"; } else { echo $config[reset($dkey)]; } echo "\n"; }
Output for git.master, git.master_jit, rfc.property-hooks
The description of test Some action description (no description) Another description This should match the `controller/action/blah` and everything similar like: `controller/action/something` and give this description Action description As the 2nd above, this should match the `action/test` itself, and similar like `action/anothertest` URI (no description)

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:
49.76 ms | 402 KiB | 8 Q