3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Brace Balance Check * * Function which checks whether or not the braces in an array of strings are balanced * @param array $values an array of strings containing braces * @return array $values an array of strings containing YES or NO responses */ function braceBalanceCheck(array $values) : array { for ($i = 0; $i <= count($values) - 1; $i++) { $braces = str_split($values[$i]); $values[$i] = isValid($braces); } return $values; } function isValid(array $braces) : string { $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]; } return match($braces, $available, $opened, $closed); } function match(array $braces, array $available, array $opened, array $closed) : string { $last_open = $opened[count($opened) - 1]; $opened = array_values($opened); $closed = array_values($closed); if (!testValidity($braces, $available, $last_open, $opened, $closed)) { return 'NO'; } if (count($opened) > 1) { match($braces, $available, array_slice($opened, 0, -1) , array_slice($closed, 1)); } return 'YES'; } function testValidity(array $braces, array $available, string $last_open, array $opened, array $closed) : bool { // Check for unopened braces $is_opened = in_array( array_flip($available)[$closed[0]], array_slice($braces, 0, array_search($closed[0], $braces)) ); if (!$is_opened) { return false; } // check if not nested properly if ($available[$last_open] !== $closed[0]) { // check if consecutive if ($available[$opened[0]] === $closed[0]) { return true; } return false; } // check if not consecutive if ($available[$opened[0]] !== $closed[0]) { // check if nested properly if ($available[$last_open] === $closed[0]) { return true; } return false; } return true; } var_dump(braceBalanceCheck(['{[()]}', '{[(]}', '{}()[]', '{]}[', '{}{'])); // YES, NO, YES, NO
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Parse error: syntax error, unexpected token "," in /in/b1NYj on line 27
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Parse error: syntax error, unexpected token "," in /in/b1NYj on line 27
Process exited with code 255.
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined offset: 0 in /in/b1NYj on line 44 Notice: Undefined index: in /in/b1NYj on line 44 Notice: Undefined offset: 0 in /in/b1NYj on line 45 array(5) { [0]=> string(3) "YES" [1]=> string(2) "NO" [2]=> string(3) "YES" [3]=> string(2) "NO" [4]=> string(3) "YES" }
Output for 7.3.32 - 7.3.33
array(5) { [0]=> string(3) "YES" [1]=> string(2) "NO" [2]=> string(3) "YES" [3]=> string(2) "NO" [4]=> string(3) "YES" }
Output for 5.6.0 - 5.6.40
Parse error: syntax error, unexpected ':', expecting '{' in /in/b1NYj on line 9
Process exited with code 255.

preferences:
230.92 ms | 401 KiB | 284 Q