我有SQL查询。
$stylesIndex = mysql_fetch_array($stylesQuery)
是否有任何php函数检查$stylesIndex
是否包含特定值?
我尝试了这个并且没有用 -
if (in_array ("3", $stylesIndex))
答案 0 :(得分:0)
$stylesIndex = ->fetch_array()
if(empty($stylesIndex('any_column_in_your_table') ){
#nothing is in your database.....
}
我认为这会对你有帮助......