class text {
function __construct() {
}
public function test() {
return '1234';
}
}
$ttt = new text();
echo $ttt.test();
exit();
它表示在echo $ ttt.test()行调用未定义的函数; 这有什么问题?
答案 0 :(得分:3)
简单地说:
echo $ttt.test();
应该是:
echo $ttt->test();
答案 1 :(得分:0)
为什么不使用 - >而不是。