Skip to content

Instantly share code, notes, and snippets.

@AaaRUnnN
AaaRUnnN / balance.php
Last active January 7, 2024 08:47
PHP Check If Parentheses, Brackets and Braces Are Balanced
<?php
/* PHP Check If Parentheses, Brackets and Braces Are Balanced
*/
function hasMatchedParenthesis($string) {
$string = str_split($string);
$stack = array();