首页 > 代码库 > PHP key_exists
PHP key_exists
此函数同array_key_exsits().
1.函数的作用:判断一个数组是否含有某个键值
2.函数的参数:
@param string $key
@param array $haystack
3.
例子一:
1 <?php 2 $arr = [‘key‘ => null]; 3 4 echo "To check whether key exist?\n"; 5 echo "The result of the isset() function : " .( isset($arr[‘key‘]) ? 1 : 0 )."\n"; 6 echo "The result of the key_exists() function :" .key_exists(‘key‘,$arr) ."\n"; 7 echo "It‘s a big problem! The isset() function is faster than the key_exists() function.\n"; 8 echo "So you can use the snip code :\n"; 9 10 if(isset($arr[‘key‘]) || key_exists(‘key‘,$arr)){ 11 echo "‘Key‘ is exist in arr array!\n"; 12 }
例子二:
PHP key_exists
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。