为什么这个php程序中的__toString没有起作用,是因为php版本的问题吗

2025-01-02 17:47:59
推荐回答(2个)
回答1:

你没有定义Person($name,$age,$sex);这个构造函数吧。这样的话怎么会有输出呢?

回答2:

public function __toString(){
$str=$this->name."
".$this->age."
".$this->sex."
";
return $str;
}
你这样写试试