php 魔术方法 __sleep __wakeup __toString __debuginfo
程序员文章站
2022-04-09 08:13:24
...
__sleep():
使用serialize()序列化的时候,会检测类中是否有__sleep()魔术方法,有的话会先调用__sleep(),返回一个包含对象中所有需要序列化的变量名称的数组
classtest{public$name='demon';
private$age='19';
publicfunction__sleep(){return ['name'];
}
}
$test = new test();
echo serialize($test);
//输出结果:O:4:"test":1:{s:4:"name";s:5:"demon";}
__wakeup()
使用serialize()序列化的时候,会检测类中是否有__wakeup()魔术方法,有的话会先调用__wakeup(),执行一些初始化操作
classtest{public$name='demon';
private$age='19';
publicfunctionsay(){echo"反序列化";
}
publicfunction__wakeup(){$this->say();
}
}
$test = new test();
unserialize(serialize($test));
//输出结果:反序列化
__toString()
__toString()用于一个类被当做字符串使用时的回应,只能返回一个字符串
classtest{public$name='demon';
private$age='19';
publicfunction__toString(){return'test';
}
}
$test = new test();
echo$test;
//输出结果:test
__debuginfo()
__debuginfo() 是php5.6增加的特性,var_dump()一个类时的回应,返回一个包含对象属性的数组
classtest{public$name='demon';
private$age='19';
publicfunction__debuginfo(){return ['name'];
}
}
$test = new test();
var_dump($test);
//输出结果:object(test)#1 (1) { [0]=> string(4) "name" }
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i ').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了php 魔术方法 __sleep __wakeup __toString __debuginfo,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
下一篇: 如何调用别人给的php接口
推荐阅读
-
PHP 魔术方法 __sleep __wakeup(四),__sleep__wakeup_PHP教程
-
PHP 魔术方法 __sleep __wakeup(四),__sleep__wakeup
-
PHP 魔术方法 __clone __toString(五),__clone__tostring
-
魔术方法__sleep和__wakeup、序列与反序列
-
PHP 魔术方法 __clone __toString(五),__clone__tostring_PHP教程
-
PHP 魔术方法 __clone __toString(五),__clone__tostring_PHP教程
-
[PHP] 魔术方法__get __set __sleep __wakeup的实际使用
-
php 魔术方法 debugInfo()
-
PHP 魔术方法: __clone __toString
-
php 魔术方法 sleep() wakeup()