php – Isset vs array_key_exists

前端之家收集整理的这篇文章主要介绍了php – Isset vs array_key_exists前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Difference between isset and array_key_exists9个
isset或array_key_exist在哪里适合使用?

在我的情况下,两个都在工作.

if( isset( $array['index'] ) {
   //Do something
}    


if( array_key_exists( 'index',$array ) {
   //Do something
}
见: http://us3.php.net/array_key_exists

isset() does not return TRUE for array keys that correspond to a NULL value,while array_key_exists() does.

原文链接:https://www.f2er.com/php/138179.html

猜你在找的PHP相关文章