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); } $pos = 0; $out = ''; $peek = function() use ($in, $pos, $len) { if ($pos+1 >= $len) { return null; } return $in[$pos+1]; }; $next = function() use ($peek, &$pos) { $c = $peek(); if ($c === null) { return null; } $pos++; return $c; }; $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); }; $start_state = function () use (&$out, $next, $peek) { for ($c = $next(); $c !== null; $c = next()) { $out .= $c; } return null; }; $state = $start_state; 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 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Fatal error: Uncaught ArgumentCountError: next() expects exactly 1 argument, 0 given in /in/gFMlR:55 Stack trace: #0 /in/gFMlR(55): next() #1 /in/gFMlR(63): {closure}() #2 /in/gFMlR(68): convert_case2('FooBARbar0123') #3 {main} thrown in /in/gFMlR on line 55
Process exited with code 255.
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: next() expects exactly 1 parameter, 0 given in /in/gFMlR on line 55 Warning: next() expects exactly 1 parameter, 0 given in /in/gFMlR on line 55 Warning: next() expects exactly 1 parameter, 0 given in /in/gFMlR on line 55 Warning: next() expects exactly 1 parameter, 0 given in /in/gFMlR on line 55 Warning: next() expects exactly 1 parameter, 0 given in /in/gFMlR on line 55 Warning: next() expects exactly 1 parameter, 0 given in /in/gFMlR on line 55 Warning: next() expects exactly 1 parameter, 0 given in /in/gFMlR on line 55 Warning: next() expects exactly 1 parameter, 0 given in /in/gFMlR on line 55 Warning: next() expects exactly 1 parameter, 0 given in /in/gFMlR on line 55 Warning: next() expects exactly 1 parameter, 0 given in /in/gFMlR on line 55 Array ( [0] => Array ( [name] => FooBar [converted] => o ) [1] => Array ( [name] => FooBAR [converted] => o ) [2] => Array ( [name] => FOOBar [converted] => o ) [3] => Array ( [name] => foo_bar [converted] => o ) [4] => Array ( [name] => FOO_bar [converted] => o ) [5] => Array ( [name] => FOO_Bar [converted] => o ) [6] => Array ( [name] => foo_BAR [converted] => o ) [7] => Array ( [name] => foo_Bar [converted] => o ) [8] => Array ( [name] => Foo_bar [converted] => o ) )
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_FUNCTION in /in/gFMlR on line 24
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_FUNCTION in /in/gFMlR on line 24
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/gFMlR on line 24
Process exited with code 255.

preferences:
318.04 ms | 401 KiB | 455 Q