ホームページ  >  記事  >  バックエンド開発  >  PDO クエリで LIKE 値を効果的にバインドするにはどうすればよいですか?

PDO クエリで LIKE 値を効果的にバインドするにはどうすればよいですか?

Barbara Streisand
Barbara Streisandオリジナル
2024-11-15 03:57:02337ブラウズ

How to Bind LIKE Values in PDO Queries Effectively?

Binding LIKE Values in PDO

When using LIKE queries in PDO, it's crucial to understand how to correctly bind the search value to avoid unexpected results.

Binding with Partial Match

To bind a partial match, you can use the following syntax:

SELECT wrd FROM tablename WHERE wrd LIKE :partial

Bind the parameter :partial to the partial value you want to search for. For example, if you have $partial = "somet", you would bind it as:

$stmt->bindParam(':partial', $partial);

Binding with Wildcard

To bind a partial match with a wildcard at the end, you can use either of these methods:

  1. PDO-Generated Wildcard:

    Use the following syntax:

    SELECT wrd FROM tablename WHERE wrd LIKE ':partial%'

    Bind the parameter :partial to the partial value without the wildcard.

  2. SQL-Generated Wildcard:

    Use the following syntax:

    SELECT wrd FROM tablename WHERE wrd LIKE CONCAT(:partial, '%')

    Bind the parameter :partial to the partial value without the wildcard.

Complex LIKE Queries

If the partial value contains special characters like %, _, or \, you need to escape them to prevent unintended results. Use the following code:

$stmt = $db->prepare("SELECT wrd FROM tablename WHERE wrd LIKE :term ESCAPE '+'");
$escaped = str_replace(array('+', '%', '_'), array('++', '+%', '+_'), $var);
$stmt->bindParam(':term', $escaped);

By following these guidelines, you can effectively bind LIKE values in your PDO queries.

以上がPDO クエリで LIKE 値を効果的にバインドするにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。