当前位置:Gxlcms > PHP教程 > php判断json对象是否存在的方法,php判断json对象_PHP教程

php判断json对象是否存在的方法,php判断json对象_PHP教程

时间:2021-07-01 10:21:17 帮助过:8人阅读

php判断json对象是否存在的方法,php判断json对象


在实际测试中php读取json数组时 使用简单的 if 或者 array_key_exists 去判断对象是否存在是会报错的,以下是google搜寻的正确判断方法

实际上出现报错只是我对php还不是很精通 因此可能我认为正确的判断方法同样不是最完美的解决方法甚至是错误的 此篇博文留作自用

错误代码:

$structure = imap_fetchstructure($connection, $id, FT_UID);
if (array_key_exists('parts', $structure))
{
}

会出现报错 Warning: array_key_exists() expects parameter 2 to be array, boolean given

正确的解决方案是:

if (is_array($structure) && array_key_exists('parts', $structure)) 
{ //...magic stuff here
}

而还有一种就是使用 isset 来直接判断:

if(isset($structure['parts']))
 {
 }

  //这个函数用来测试变量是否已经配置。若变量已存在则返回 true 值。其它情形返回 false 值。

  //因此需要若变量存在且值不为NULL,才返回 TURE

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1140066.htmlTechArticlephp判断json对象是否存在的方法,php判断json对象 在实际测试中php读取json数组时 使用简单的 if 或者 array_key_exists 去判断对象是否存在是会报...

人气教程排行