为什么这段代码抛出
语法错误,意外'->' ( T_OBJECT_OPERATOR ),期待 ',' 或 ';'
php 7.1
<?php
class TestHtml
{
public function Send() { return $this; }
public function Dispose() { return $this; }
public function ToString() { return 'Done'; }
}
echo new TestHtml->Send()->Dispose()->ToString(); // there error
?>
不负相思意