PDO で LIKE と bindingParam を正しく使用して、特定の文字で始まるユーザー名を照合する方法

Patricia Arquette
リリース: 2024-11-14 13:28:02
オリジナル
395 人が閲覧しました

How to Correctly Use LIKE and bindParam in PDO to Match Usernames Starting with a Specific Character?

Matching Usernames Beginning with a Character Using LIKE and bindParam in PDO

In database querying using bindParam with PDO, you may encounter scenarios where you need to utilize the LIKE operator to search for partial matches of data. Specifically, you may want to retrieve usernames that begin with a specific character, denoted as 'a' in this case.

To achieve this using LIKE and bindParam correctly, avoid enclosing the bindParam placeholder with inner single quotes. The correct syntax is:

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

The code exhibits an error in attempting to execute a%' as the wildcard criteria instead of a%.

Remember that bindParam ensures that all string values are quoted appropriately when passed to the SQL statement. Therefore, enclosing the placeholder in quotes is unnecessary and will result in incorrect matching.

The corrected query should read as follows:

$term = "a%";

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

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

This code will successfully retrieve all usernames that start with the character 'a' by applying the LIKE operator correctly within the bindParam usage.

以上がPDO で LIKE と bindingParam を正しく使用して、特定の文字で始まるユーザー名を照合する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

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