在sql查询中附加静态变量

时间:2015-02-11 12:43:43

标签: append static-variables late-static-binding

我在插入过程中尝试使用late static binding concept,但在编写此语句时出现语法错误: 我使用的是php 5.3.8版本

$resultArray = $this->connection->query("insert into " static::$table "(title,link) values('hi','hello')");

1 个答案:

答案 0 :(得分:1)

您似乎忘记了concatenate static::$table的一些点与查询字符串的其余部分。试试这个:

$resultArray = $this->connection->query("insert into " . static::$table . "(title,link) values('hi','hello')");