php tostring用法
Posted ysbl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php tostring用法相关的知识,希望对你有一定的参考价值。
<?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;
以上是关于php tostring用法的主要内容,如果未能解决你的问题,请参考以下文章
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段