码迷,mamicode.com
首页 > 其他好文 > 详细

isset和empty,isset和unset,__isset和__unset

时间:2019-07-27 12:46:18      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:ima   info   htm   html   就是   log   怎么   等于   技术   

1.isset() 用来检测变量是否存在,如果变量存在,且值不等于零,返回ture

  empty() 用来检测师傅为空,如果变量值值为""0"0"NULL、、FALSEarray()var $var; 以及没有任何属性的对象,则返回 ture

2.issert和unset,

 isset我们都知道了,我们来看unset,

  unset来销毁对象的属性,

技术图片

但是,这种方法只能用来销毁公开权限的属性,如果是私有的或者受保护的属性又怎么办呢?

那就是接下来的__isset和__unset了

3.__isset和__unset

__isset用来判断私有属性或者受保护的属性的是否存在。

技术图片

 

 结果是:因为调用了__isset方法,所以输出结果为捕捉到使用isset函数检测私有成员属性

__unset()也是如此:

技术图片

 

只有调用__unset方法才可以销毁私有和受保护的成员属性.

 借鉴于:

 https://www.cnblogs.com/finalanddistance/p/9324177.html

isset和empty,isset和unset,__isset和__unset

标签:ima   info   htm   html   就是   log   怎么   等于   技术   

原文地址:https://www.cnblogs.com/cyk2/p/11254434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!