>  기사  >  데이터 베이스  >  IN() 조건과 함께 WordPress 준비 문을 사용하는 방법은 무엇입니까?

IN() 조건과 함께 WordPress 준비 문을 사용하는 방법은 무엇입니까?

Susan Sarandon
Susan Sarandon원래의
2024-11-14 14:33:02555검색

How to Use WordPress Prepared Statements with IN() Conditions?

WordPress Prepared Statements with IN() Conditions

When attempting to use a WordPress prepared statement with multiple values in an IN() condition, you may encounter issues with the values being concatenated into a single string with escaped double quotes.

To resolve this, follow these steps:

  1. Convert the values to an array:
$villes = array("paris", "fes", "rabat");
  1. Generate the SQL statement with the placeholder for the values:
$sql = "
  SELECT DISTINCT telecopie
  FROM `comptage_fax`
  WHERE `ville` IN(" . implode(', ', array_fill(0, count($villes), '%s')) . ")
";
  1. Use call_user_func_array to prepare the statement with the values as separate arguments:
$query = call_user_func_array(array($wpdb, 'prepare'), array_merge(array($sql), $villes));

This method ensures that each value is properly escaped and passed as a separate parameter.

위 내용은 IN() 조건과 함께 WordPress 준비 문을 사용하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.