3v4l.org

run code in 300+ PHP versions simultaneously
<?php $functionDef = <<<'EOF' <?php function notThisOne( $baz = 'boz') {} function foo ( Bar $bar, Baz $baz = 'string with, comma', $boz = ['something'] ) { } EOF; $function = 'foo'; $argument = 'baz'; if (!preg_match('/function\s+' . preg_quote($function) . '\s*\(\s*(?P<args>.*?)\)/is', $functionDef, $matches)) { throw new RuntimeException('Cound not find parameters for function ' . $function); } $tokens = token_get_all('<?php ' . $matches['args']); // small state machine, better in a class $foundArg = false; $default = ''; while ($token = next($tokens)) { // find the argument first of all if (!$foundArg) { if (is_array($token) && $token[1] == '$'.$argument) { $foundArg = true; } continue; } // detect when we have got to the end of the definitoin if ($token === ',') { break; } // compile everything else into the string if (is_string($token)) { $default .= $token; } else { $default .= $token[1]; } } var_dump($default);
Output for git.master, git.master_jit, rfc.property-hooks
string(23) " = 'string with, comma'"

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:
53 ms | 401 KiB | 8 Q