我是 PHP 的新手,做 MySQL 操作。归结为问题后,数据库有 2 列 - 城市、自治市镇。一些城市有一个自治市镇,并且该领域人口众多。一些城市没有,并且 borough 字段为空。如果填充了 borough 字段,我只想将数据检索到数组中。我的代码如下所示:
while ($row = mysql_fetch_array($fetch, MYSQL_ASSOC)){
if ( what_column_identifier_goes_here? != null ){
/* For each row containing borough_data, put it in the return array */
$row_array['city'] = $row['borough'];
array_push($return_arr,$row_array);
}
}
我试图寻找答案,但我想不出好的术语。从搜索中,我怀疑这已被弃用。目前,我只想让一些东西工作,然后我将学习 PDO 并在几个脚本中进行大量更改。
谢谢你的帮助。