3v4l.org

run code in 300+ PHP versions simultaneously
<?php function braceCheck($values) { for ($i = 0; $i <= count($values) - 1; $i++) { $braces = str_split($values[$i]); $values[$i] = isValid($braces); } return $values; } function isValid($braces) { $available = ['{' => '}', '(' => ')', '[' => ']']; $opened = []; $closed = []; for ($i = 0; $i <= count($braces) - 1; $i++) { if (in_array($braces[$i], array_keys($available))) { $opened[] = $braces[$i]; continue; } $closed[] = $braces[$i]; } var_dump($opened, $closed); return match($available, $opened, $closed); } function match($available, $opened, $closed) { $last_open = $opened[count($opened) - 1]; $opened = array_values($opened); $closed = array_values($closed); /* echo 'LAST OPEN: ' . $last_open . PHP_EOL; echo 'AVAILABLE: ' . $available[$last_open] . PHP_EOL; echo 'FIRST CLOSED: ' . $closed[0] . PHP_EOL; */ if (count($opened) !== count($closed)) { echo 'count off'; return 'NO'; } // Check for invalid nesting or non-consecutive braces if ($available[$last_open] !== $closed[0] && $available[$opened[0]] !== $closed[0]) { return 'NO'; } if (count($opened) >= 1) { $result = match( $available, array_slice($opened, 0, -1), array_slice($closed, 1) ); } return 'YES'; } $values = ['{}()[]', '{]}[']; var_dump(braceCheck($values)); ?>
Output for git.master_jit, git.master, rfc.property-hooks
Parse error: syntax error, unexpected token "," in /in/OmPjS on line 26
Process exited with code 255.

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