首頁 >後端開發 >php教程 >php查询条件为一维数组

php查询条件为一维数组

WBOY
WBOY原創
2016-06-23 13:47:191311瀏覽

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).")";

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn