如何从php中的数组中搜索id / item?

时间:2012-05-11 03:00:19

标签: php mysql arrays

我有一个项目的$_SESSION个ID

例如我有这个项目

$_SESSION['items'] = array(1,4,5,7,8);

我有数据库中的数据

$query = mysql_query("SELECT * FROM items");

while($row =  mysql_fetch_array($query)){
   // Here in the loop; I want to Search 
   // $row['id'] if exist in $_SESSION['items']
   // if exist I want to display 'YES' else 'NO'
}

如何为此做正确的代码?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

使用in_array http://sg2.php.net/in_array

if(in_array($row['id'], $_SESSION['items']))