PHP常用魔术方法(__toString魔术方法)

<?php
//文件名:index.php
define('a',__DIR__);
include '/IMooc/Loader.php';
spl_autoload_register('\IMooc\Loader::autoload');


$Object = new IMoocObject();

echo $Object;//对象不能当字符串直接输出,当对象转换成字符串时,会自动去回调__toString方法
/*输出:
        哈哈哈哈
*/
<?php
namespace IMooc;//文件名:Object.php
class Object
{
    function __toString()//当对象转换成字符串时,会自动去回调__toString方法
    {
        return "哈哈哈哈";
    }
}
原文地址:https://www.cnblogs.com/shark1100913/p/5523112.html