我只是偶然发现了以下方法来组成参数化的SQL查询:
function select_user($uid)
{
// what is '<<<'?
// I can't google any document about it
// (or I don't know how to search symbol)
$sqlStr = <<< SQL_STR
SELECT * FROM user WHERE uid = ?
SQL_STR; // must put in the begin of the line
// and it must match the word at the right hand side of '= <<<'
// Code Igniter Database Class
return $this->db->query($sqlStr, array($uid));
}
在这里重新表达我的问题:
>什么符号“<<<”有吗
>我的同事说’SQL_STR’必须匹配,为什么?
解决方法:
您要寻找的是heredoc.
对于它的价值,SQL查询与字符串分配无关:
$html = <<<HTML
Imagine some HTML here with interspersed $variables
HTML;
当然也不限于HTML.对于较大的文本块,它具有很多有用的属性.即,您可以以一种令人愉快的方式将变量插值到其中,而不必转义单引号或双引号. (根据手册:“ Heredoc文本的行为就像带双引号的字符串,没有双引号.”)