3v4l.org

run code in 300+ PHP versions simultaneously
<?php function depbuild($name, $location, $suffix, $locale) { echo "*** $name - $location - $suffix - $locale\n\n"; $locales = $locale ? array($locale, null) : array(null); $extensions = array_filter(array( ($location && $suffix) ? implode('-', array($location, $suffix)) : null, $suffix ?: null, $location ?: null, )); $extensions[] = null; $routing = array(); foreach ($locales as $lang) { foreach ($extensions as $extension) { echo implode('-', array_filter(array( $name, $extension, $lang, ))) . '.html'.PHP_EOL; } } } $name = 'foo'; $location = array(null, 'GL', 'AS'); $suffix = array(null, 'P','C'); $locale = array(null, 'fr_FR'); foreach($location as $loc) { foreach($suffix as $s) { foreach($locale as $l) { depbuild($name, $loc, $s, $l); echo PHP_EOL.'--------'.PHP_EOL; } } }
Output for git.master, git.master_jit, rfc.property-hooks
*** foo - - - foo.html -------- *** foo - - - fr_FR foo-fr_FR.html foo.html -------- *** foo - - P - foo-P.html foo.html -------- *** foo - - P - fr_FR foo-P-fr_FR.html foo-fr_FR.html foo-P.html foo.html -------- *** foo - - C - foo-C.html foo.html -------- *** foo - - C - fr_FR foo-C-fr_FR.html foo-fr_FR.html foo-C.html foo.html -------- *** foo - GL - - foo-GL.html foo.html -------- *** foo - GL - - fr_FR foo-GL-fr_FR.html foo-fr_FR.html foo-GL.html foo.html -------- *** foo - GL - P - foo-GL-P.html foo-P.html foo-GL.html foo.html -------- *** foo - GL - P - fr_FR foo-GL-P-fr_FR.html foo-P-fr_FR.html foo-GL-fr_FR.html foo-fr_FR.html foo-GL-P.html foo-P.html foo-GL.html foo.html -------- *** foo - GL - C - foo-GL-C.html foo-C.html foo-GL.html foo.html -------- *** foo - GL - C - fr_FR foo-GL-C-fr_FR.html foo-C-fr_FR.html foo-GL-fr_FR.html foo-fr_FR.html foo-GL-C.html foo-C.html foo-GL.html foo.html -------- *** foo - AS - - foo-AS.html foo.html -------- *** foo - AS - - fr_FR foo-AS-fr_FR.html foo-fr_FR.html foo-AS.html foo.html -------- *** foo - AS - P - foo-AS-P.html foo-P.html foo-AS.html foo.html -------- *** foo - AS - P - fr_FR foo-AS-P-fr_FR.html foo-P-fr_FR.html foo-AS-fr_FR.html foo-fr_FR.html foo-AS-P.html foo-P.html foo-AS.html foo.html -------- *** foo - AS - C - foo-AS-C.html foo-C.html foo-AS.html foo.html -------- *** foo - AS - C - fr_FR foo-AS-C-fr_FR.html foo-C-fr_FR.html foo-AS-fr_FR.html foo-fr_FR.html foo-AS-C.html foo-C.html foo-AS.html foo.html --------

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:
35.8 ms | 405 KiB | 8 Q