当前位置:Gxlcms > PHP教程 > php查询条件为一维数组

php查询条件为一维数组

时间:2021-07-01 10:21:17 帮助过:31人阅读

PHP查询条件where id = array(1,2,3)怎么做


回复讨论(解决方案)

where id in (1,2,3)

$id = implode(',', array(1,2,3));
$sql = "....where id in ($id) ";

使用in可以

$id = array(1,2,3);$sqlstr = "select * from table where id in(".implode(',',$id).")";

人气教程排行