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:
$villes = array("paris", "fes", "rabat");
$sql = " SELECT DISTINCT telecopie FROM `comptage_fax` WHERE `ville` IN(" . implode(', ', array_fill(0, count($villes), '%s')) . ") ";
$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 중국어 웹사이트의 기타 관련 기사를 참조하세요!