首頁  >  文章  >  後端開發  >  PHP中 __toString()方法詳解

PHP中 __toString()方法詳解

藏色散人
藏色散人原創
2019-07-24 14:00:4811026瀏覽

 __toString(),類別當成字串時的回應方法

#作用:

__toString() 方法用於一個類別被當成字串時應如何回應。例如 `echo $obj;` 應該要顯示些什麼。

注意:

此方法必須傳回字串,否則將發出一條 `E_RECOVERABLE_ERROR` 層級的致命錯誤。

警告:

不能在 __toString() 方法中拋出例外。這麼做會導致致命錯誤。

程式碼:

<?php
class Person
{
    public $sex;
    public $name;
    public $age;
    public function __construct($name="",  $age=25, $sex=&#39;男&#39;)
    {
        $this->name = $name;
        $this->age  = $age;
        $this->sex  = $sex;
    }
    public function __toString()
    {
        return  &#39;go go go&#39;;
    }
}
$person = new Person(&#39;小明&#39;); // 初始赋值
echo $person;

結果:

go go go

那麼如果類別中沒有 __toString() 這個魔術方法運行會發生什麼事呢?讓我們來測試下:

程式碼:

<?php
class Person
{
    public $sex;
    public $name;
    public $age;
    public function __construct($name="",  $age=25, $sex=&#39;男&#39;)
    {
        $this->name = $name;
        $this->age  = $age;
        $this->sex  = $sex;
    }
    
}
$person = new Person(&#39;小明&#39;); // 初始赋值
echo $person;

結果:

Catchable fatal error: Object of class Person could not be converted to string in D:\phpStudy\WWW\test\index.php on line 18
很明显,页面报了一个致命错误,这是语法所不允许的。

以上是PHP中 __toString()方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn