-1

似たようなトピックをたくさん読んだのですが、間違いがわかりません。

問題:

Uncaught exception 'PDOException' with message 'SQLSTATE[HY093]: Invalid parameter number: parameter was not defined' in I:\home\lm.ru\www\classes\db.class.php:39 Stack trace: #0 I:\home\lm.ru\www\classes\db.class.php(39): PDOStatement->execute(Array) #1 I:\home\lm.ru\www\classes\page.class.php(34):

コード:

class Page
{
    public $id = "";
    public $link = ""; //+
    public $links_count = 0;//+
    public $places_count = 0;
    public $external_links = 0; //+
    public $context = 0;
    public $has_text = 0;
    public $text = "";
    public $ya_index = 0;
    public $ya_index_data = 0;
    public $google_pr = 0;
    public $google_pr_date = 0;
    public $level = 0; // 0 - main, 1 - 2 level... +
    public $title = ""; // +
    public $is_active = 1;
    public $deleted = 0;
    public $site_id = 0; //+

    function Add($data)
    {
        foreach($data as $key => $value)
        {
            $this->$key = $value;
        }

        print_r((array)$this);

        PDO_wrap::Change("INSERT INTO pages (id, link, links_count, places_count, external_links, context, has_text, text, ya_index, ya_index_date, google_pr, google_pr_date, level, title, is_active, deleted, site_id) VALUES(:id, :link, :links_count, :places_count, :external_links, :context, :has_text, :text, :ya_index, :ya_index_date, :google_pr, :google_pr_date, :level, :title, :is_active, :deleted, :site_id)", (array)$this);

        $this->id = PDO_wrap::LastInsertId();
    }

}

PDO_wrapメソッド:

public static function Change($query, $params = array())
    {
        $sql = self::$pdo->prepare($query);
        $sql->execute($params);
        return $sql->rowCount();
    }
4

2 に答える 2

6

クラスの小道具と値のリストの間に不一致があります

$ya_index_data; 

vs

:ya_index_date
于 2013-03-24T15:05:26.683 に答える
0

私は同じ問題に遭遇しました。PDOでは、配列内のエントリの数がSQLステートメントの要素の数と一致している必要があります。PDOに$_POST配列を指定して、同じことを試みました。要素が別の配列にコピーされた後でのみ、PDOはその配列を受け入れました。

于 2016-08-25T20:50:47.690 に答える