3v4l.org

run code in 300+ PHP versions simultaneously
<?php function Syllables($string) { $syllables = array ( 'ai|ae|ay|au|ea|ee|ei|eu|ey|ie|ii|io|oa|oe|oi|oo|ou|oy|ue|uy|ya|ye|yi|yo|yu', 'a|e|i|o|u|y', ); return preg_match_all('~' . implode('|', $syllables) . '~', preg_replace('~[es]$~', '', $string)); } $domains = array ( 'algorithmical' => 0, 'bitoriented' => 0, 'cargocultdevs' => 0, 'corecursion' => 0, 'dereferenced' => 0, 'fellowhackers' => 0, 'gosub10' => 0, 'gosubten' => 0, 'humbledeveloper' => 0, 'humbleprogrammers' => 0, 'metaprogramming' => 0, 'privatevoid' => 0, 'shiftleft1' => 0, 'stackoverflow' => 0, 'understandrecursion' => 0, 'writeoncereadmany' => 0, ); foreach ($domains as $key => $value) { $domains[$key] = Syllables($value); } if (arsort($domains, SORT_NUMERIC) === true) { print_r($domains); }
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [algorithmical] => 0 [bitoriented] => 0 [cargocultdevs] => 0 [corecursion] => 0 [dereferenced] => 0 [fellowhackers] => 0 [gosub10] => 0 [gosubten] => 0 [humbledeveloper] => 0 [humbleprogrammers] => 0 [metaprogramming] => 0 [privatevoid] => 0 [shiftleft1] => 0 [stackoverflow] => 0 [understandrecursion] => 0 [writeoncereadmany] => 0 )

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