小编use*_*608的帖子

SQLSTATE [HY093]:参数号无效:绑定变量数与第102行上的令牌数不匹配

我收到错误的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)

php mysql sql

16
推荐指数
1
解决办法
9万
查看次数

标签 统计

mysql ×1

php ×1

sql ×1