/ Published in: PHP
like array_key_exists but accepts an array of key values to check
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function array_keys_exist($keyArray, $array) { foreach($keyArray as $key) { return false; } return true; }