php如何检查mysql_fetch是否包含值

时间:2017-07-16 17:19:21

标签: php

我有SQL查询。

$stylesIndex = mysql_fetch_array($stylesQuery)

是否有任何php函数检查$stylesIndex是否包含特定值?

我尝试了这个并且没有用 -

if (in_array ("3", $stylesIndex))

1 个答案:

答案 0 :(得分:0)

$stylesIndex = ->fetch_array()

if(empty($stylesIndex('any_column_in_your_table') ){

    #nothing is in your database.....
}

我认为这会对你有帮助......