MySQL PDO クエリで「LIKE」を使用すると「bindParam」が失敗するのはなぜですか?

Susan Sarandon
リリース: 2024-11-13 10:36:02
オリジナル
139 人が閲覧しました

Why Does `bindParam` Fail When Using `LIKE` in MySQL PDO Queries?

Correcting LIKE Syntax When Using bindParam for MySQL PDO Queries

In MySQL PDO queries, using LIKE with bindParam can be tricky. This question demonstrates a common issue faced when attempting to match usernames beginning with a specific string.

The incorrect syntax provided in the question uses inner single quotes around the $term variable:

$term = "'$term%'";
ログイン後にコピー

To fix this, simply remove the inner single quotes:

$term = "$term%";
ログイン後にコピー

When using bindParam, PDO automatically handles string quoting. Adding unnecessary quotes within the $term variable can result in incorrect LIKE matching.

The corrected statement should look like this:

$sql = "SELECT username 
        FROM `user` 
        WHERE username LIKE :term 
        LIMIT 10";      

$core = Connect::getInstance();

$stmt = $core->dbh->prepare($sql);
$stmt->bindParam(':term', $term, PDO::PARAM_STR);
$stmt->execute();
$data = $stmt->fetchAll();
ログイン後にコピー

This will correctly match usernames that begin with the $term variable, for example "a".

以上がMySQL PDO クエリで「LIKE」を使用すると「bindParam」が失敗するのはなぜですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート