PHP中 __wakeup()方法詳解

2020-07-16 10:05:40
__wakeup(),執行unserialize()時,先會呼叫這個函數

如果說 __sleep() 是白的,那麼 __wakeup() 就是黑的了。

那麼為什麼呢?

因為:

與之相反,`unserialize()` 會檢查是否存在一個 `__wakeup()` 方法。如果存在,則會先呼叫 `__wakeup` 方法,預先準備物件需要的資源。

作用:

__wakeup() 經常用在反序列化操作中,例如重新建立資料庫連線,或執行其它初始化操作。

還是看程式碼:

<?php
class Person
{
    public $sex;
    public $name;
    public $age;
    public function __construct($name="",  $age=25, $sex='男')
    {
        $this->name = $name;
        $this->age  = $age;
        $this->sex  = $sex;
    }
    /**
     * @return array
     */
    public function __sleep() {
        echo "當在類外部使用serialize()時會呼叫這裡的__sleep()方法<br>";
        $this->name = base64_encode($this->name);
        return array('name', 'age'); // 這裡必須返回一個數值,裡邊的元素表示返回的屬性名稱
    }
    /**
     * __wakeup
     */
    public function __wakeup() {
        echo "當在類外部使用unserialize()時會呼叫這裡的__wakeup()方法<br>";
        $this->name = 2;
        $this->sex = '男';
        // 這裡不需要返回陣列
    }
}
$person = new Person('小明'); // 初始賦值
var_dump(serialize($person));
var_dump(unserialize(serialize($person)));

執行結果:

當在類外部使用serialize()時會呼叫這裡的__sleep()方法
string(58) "O:6:"Person":2:{s:4:"name";s:8:"5bCP5piO";s:3:"age";i:25;}" 當在類外部使用serialize()時會呼叫這裡的__sleep()方法
當在類外部使用unserialize()時會呼叫這裡的__wakeup()方法
object(Person)#2 (3) { ["sex"]=> string(3) "男" ["name"]=> int(2) ["age"]=> int(25) }

以上就是PHP中 __wakeup()方法詳解的詳細內容,更多請關注TW511.COM其它相關文章!