我收到错误的SQLSTATE [HY093]:参数号无效:绑定变量的数量与下面comments.php中第102行的令牌数量不匹配:
<?php
/**
* Class to handle articles
*/
class Comment
{
// Properties
/**
* @var int The article ID from the database
*/
public $id = null;
/**
* @var int When the article is to be / was first published
*/
public $publicationDate = null;
/**
* @var string Full title of the article
*/
public $title = null;
/**
* @var string The HTML content of the article
*/
public $content = null;
/**
* …Run Code Online (Sandbox Code Playgroud)