isset和empty,isset和unset,__isset和__unset

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

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

2.issert和unset,

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

  unset来销毁对象的属性,

isset和empty,isset和unset,__isset和__unset

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

那就是接下来的__isset和__unset了

3.__isset和__unset

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

isset和empty,isset和unset,__isset和__unset

 

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

__unset()也是如此:

isset和empty,isset和unset,__isset和__unset

 

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

 借鉴于:

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

上一篇:php 魔术变量 __unset()


下一篇:为什么unset()在PHP三元运算符中不起作用