当echo一个对象的时候,会报错误 Object of class Person could not be converted to string 我们可以通过魔术方法__tostring() 把对象转成字符串 #!/usr/bin/php <?php class Person{ public $name = 'ghostwu'; public $age = 20; function __toString(){ return json_encode( $this ); } } echo new…
php魔术方法-----__tostring(),__invoke,__call(),__callStatic ... __tostring(),__invoke() __tostring()方法是在对象当作字符串输出时被自动调用 __invoke()方法是在对象当作方法时被自动调用 <?php class Tomato { public function __tostring(){ return "string"; } public function __invoke(){ e…