Forked from Irfan-Ansari/Check if specific array key exists in multidimensional array - PHP
Created
May 22, 2018 04:56
-
-
Save mendaparadarshit/216f4b0468dec5d68581160d5f37b3bd to your computer and use it in GitHub Desktop.
Check if specific array key exists in multidimensional array - PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$array = array( | |
'21' => array(), | |
'24' => array( | |
'22' => array(), | |
'25' => array( | |
'26' => array() | |
) | |
) | |
); | |
var_dump(multiKeyExists($array, 22)); | |
var_dump(multiKeyExists($array, 23)); | |
function multiKeyExists( Array $array, $key ) { | |
if (array_key_exists($key, $array)) { | |
return true; | |
} | |
foreach ($array as $k=>$v) { | |
if (!is_array($v)) { | |
continue; | |
} | |
if (array_key_exists($key, $v)) { | |
return true; | |
} | |
} | |
return false; | |
} | |
Output: | |
bool(true) | |
bool(false) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment