您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)php中魔術(shù)方法的示例分析的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
php魔術(shù)方法:1、【_sleep()】控制對(duì)象序列化時(shí)真正處理的部分;2、【_wakeup()】在反序列化后還原對(duì)象屬性;3、【_toString()】對(duì)象轉(zhuǎn)換成為字符串的機(jī)制。
php魔術(shù)方法:
_sleep() 可以控制對(duì)象序列化時(shí)真正處理的部分
_wakeup() 在反序列化后還原對(duì)象屬性
_toString() 對(duì)象轉(zhuǎn)換成為字符串的機(jī)制
把php變量轉(zhuǎn)換成一串編碼后字符串,方法為serialize() 反序列化unserialize()
//序列化 class testSerialize{ public $a = 10; public $b = 15; public $c = 20; function _construct(){ $this->b = $this->a * 10; $this->c = $this->b * 2; } } $k = serialize(new testSerialize()); echo $k;// out: O:13:"testSerialize":3:{s:1:"a";i:10;s:1:"b";i:15;s:1:"c";i:20;} $j = unserialize($k);
sleep方法:
class testSerialize1{ public $a = 10; public $b = 15; public $c = 20; function _construct(){ $this->b = $this->a * 10; $this->c = $this->b * 2; } function __sleep(){ return $this->a; } } $k = serialize(new testSerialize1()); echo $k;
其他方法同理
感謝各位的閱讀!關(guān)于“php中魔術(shù)方法的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。