我正在使用 zend studio 在 php 中进行编码。
在以下代码zend studio
行中显示警告,但它工作正常并立即向我显示表格。 while...
assignment in condition
$oDB = new db;
print '<strong>Twitter Database Tables</strong><br />';
$result = $oDB->select('SHOW TABLES');
while ($row = mysqli_fetch_row($result)) {
print $row[0] . '<br />';
}
但是,当我使用以下代码解决此警告时,它不会显示警告,zend studio
但会在很长一段时间后向我显示表格,20 to 30 seconds
并在结果下显示很长的空白。为什么?
$oDB = new db;
print '<strong>Twitter Database Tables</strong><br />';
$result = $oDB->select('SHOW TABLES');
while (( $row = mysqli_fetch_row($result)) !==FALSE) {
print $row[0] . '<br />';
}