是快速获取对象的字符串表示的最便捷的方式,它是在直接输出对象引用时自动调用的方法。 在__toString()方法中一定要有一个字符串作为返回值,通常在此方法中返回的字符串是使用对象中多个属性连接而成的。
<?pph
class testclass{
private $foo;
function __construct($a){ //通过构造方法传值为成员属性赋初值
$this->foo=$a; //为成员属性赋值
}
public function __toString(){ //在类中定义一个__toString()方法
return $this->foo; //返回一个成员属性$foo的值
}
}
$b=new testclass("hello!"); //创建一个对象并赋值给对象引用$b
echo $b; //直接输出对象引用则自动调用了对象中__toString()方法输出hello!
?>