mysql_fetch_assoc中的is_numeric()

时间:2016-06-14 09:48:40

标签: php mysql syntax

您好我试图检查mysql_fetch_assoc($query)是否为数值。但是收到错误:

  

解析错误:语法错误,意外的T_STRING,期待'('在第53行的/var/www/xmlexport/run/test.php

我正在使用:

while($values_query = mysql_fetch_assoc($query))

第53行是:

    if is_numeric($values_query['row5']) { $testt = round(($values_query['row5']), 2); } else { $testt = 'hello'; }

1 个答案:

答案 0 :(得分:0)

试试这个:

 if (is_numeric($values_query['row5'])) { $testt = round(($values_query['row5']), 2); } else { $testt = 'hello'; }

if条件没有括号