我在插入过程中尝试使用late static binding concept,但在编写此语句时出现语法错误: 我使用的是php 5.3.8版本
$resultArray = $this->connection->query("insert into " static::$table "(title,link) values('hi','hello')");
答案 0 :(得分:1)
您似乎忘记了concatenate static::$table
的一些点与查询字符串的其余部分。试试这个:
$resultArray = $this->connection->query("insert into " . static::$table . "(title,link) values('hi','hello')");