标签:highlight ret turn eth public fun imp str todo
<?php
class a{
private $a="123";
private $b="456";
public function __toString()
{
// TODO: Implement __toString() method.
return $this->a.$this->b;
}
}
$a = new a();
echo $a;
标签:highlight ret turn eth public fun imp str todo
原文地址:https://www.cnblogs.com/ysbl/p/12723771.html