gpt4 book ai didi

php - 使用 PHP 数组的 SQL 搜索

转载 作者:行者123 更新时间:2023-11-29 02:53:21 27 4
gpt4 key购买 nike

如何使用 PHP 数组在 MySQL 数据库中搜索多个字段。

例如,使用通配符 %["Cambridge","Massachusetts","US"] 数组搜索 place_name、admin_name1 和 admin_name2 等字段>

下面是数据库的具体结构 ]]

最佳答案

假设您的数组索引名称与您的表列名称相同:

$query = "select * from tableName";
$arrCount = count($arrName);
$i=1;
if($arrCount) > 0){
$query .= " where";
foreach($arrName as $key->$val){
$query .= $key." LIKE '%".$val."%'";
if($i <= $arrCount)
$query .= " AND";
$i++;
}
}

然后运行查询!

关于php - 使用 PHP 数组的 SQL 搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33232207/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com