3v4l.org

run code in 300+ PHP versions simultaneously
<?php function do_split($name) { return preg_split('/([A-Z]{2,}|([A-Z][^A-Z]*))/', $name, null, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY); } function convert_case($name) { return implode( '_', array_map( 'strtolower', do_split($name) ) ); } function convert_case2($in) { $len = strlen($in); if ($len < 2) { return strtolower($in); } // no state $upper = function ($c) { return 'A' <= $c && $c <= 'Z'; }; $lower = function ($c) { return 'a' <= $c && $c <= 'z'; }; $alpha = function ($c) use ($upper, $lower) { return $upper($c) || $lower($c); }; $num = function ($c) { return '0' <= $c && $c <= '9'; }; $alpha_num = function ($c) use ($alpha, $num) { return $alpha($c) || $num($c); }; // stream state $pos = 0; $char = $in[0]; $peek = function() use ($in, &$pos, $len) { if ($pos+1 >= $len) { return null; } return $in[$pos+1]; }; $next = function() use ($peek, &$pos, &$char) { $char = $peek(); $pos++; return $char !== null; }; // lex state $out = ''; $find_start = function () use (&$char, $alpha_num, $next) { while (!$alpha_num($char)) { if (!$next()) { return null; } } echo "START: $char"; return null; }; $state = $find_start; while ($state !== null) { $state = $state(); } return strtolower($out); } convert_case2('FooBARbar0123'); $samples = array( 'FooBar', 'FooBAR', 'FOOBar', 'foo_bar', 'FOO_bar', 'FOO_Bar', 'foo_BAR', 'foo_Bar', 'Foo_bar', ); print_r(array_map(function ($name) { return array( 'name' => $name, 'converted' => convert_case2($name), // 'converted' => convert_case($name), ); }, $samples));
Output for git.master, git.master_jit, rfc.property-hooks
START: FSTART: FSTART: FSTART: FSTART: fSTART: FSTART: FSTART: fSTART: fSTART: FArray ( [0] => Array ( [name] => FooBar [converted] => ) [1] => Array ( [name] => FooBAR [converted] => ) [2] => Array ( [name] => FOOBar [converted] => ) [3] => Array ( [name] => foo_bar [converted] => ) [4] => Array ( [name] => FOO_bar [converted] => ) [5] => Array ( [name] => FOO_Bar [converted] => ) [6] => Array ( [name] => foo_BAR [converted] => ) [7] => Array ( [name] => foo_Bar [converted] => ) [8] => Array ( [name] => Foo_bar [converted] => ) )

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:
40.85 ms | 403 KiB | 8 Q