我刚刚阅读了PHP代码
public function addSong($author, $title)
{
// clean the input from javascript code for example
$author = strip_tags($author);
$title = strip_tags($title);
$sql = "INSERT INTO book (author, title) VALUES (:author, :title)";
$query = $this->db->prepare($sql);
$query->execute(array(':author' => $author, ':title' => $title));
}
我发现了一些我以前见过的东西。在线
$sql = "INSERT INTO book (author, title) VALUES (:author, :title)";
我看到编码员使用:author 和:title
我想知道是什么意思:在参数前面和不同之间有什么不同。
谢谢。