微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – 尝试在wpdb中使用IN()时出现问题

我有这个:

$villes = '"paris","fes","rabat"';
$sql    = 'SELECT distinct telecopie FROM `comptage_fax` WHERE `ville` IN(%s)';
$query  = $wpdb->prepare($sql, $villes);

当我做一个echo $查询;我得到:

SELECT distinct telecopie FROM `comptage_fax` WHERE `ville` IN('\"CHAPELLE VIVIERS \",\"LE MANS \",\"QUEND\"')

我遇到的问题是$wpdb添加’in IN(‘…’)

有人可以帮忙,谢谢

解决方法:

试试这段代码(修复):

// Create an array of the values to use in the list
$villes = array("paris", "fes", "rabat");    

// Generate the sql statement.
// The number of %s items is based on the length of the $villes array
$sql = "
  SELECT disTINCT telecopie
  FROM `comptage_fax`
  WHERE `ville` IN(".implode(', ', array_fill(0, count($villes), '%s')).")
";

// Call $wpdb->prepare passing the values of the array as separate arguments
$query = call_user_func_array(array($wpdb, 'prepare'), array_merge(array($sql), $villes));

echo $query;

> implode()
> array_fill()
> call_user_func_array()
> array_merge()

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐