php while循环得到循环次数
程序员文章站
2022-05-24 10:09:53
...
在for循环中,我们很容易得到循环次数,因为是作为条件出现的。在while也可以得到,如下:
复制代码 代码如下:
$link = mysql_connect('localhost','root','pwd');
mysql_select_db('db');
$sql = "select region_id,local_name from regions where region_grade=1";
$result = mysql_query($sql);
$i =0;
while ($row= mysql_fetch_assoc($result)) {
$list[$i]['text']=$row['local_name'];
$list[$i]['value']=$row['region_id'];
$i++;
}
$list = json_encode($list);
echo $list;
?>
在实际工作,偶尔会用到的。 ,
上一篇: php综合复习题大全_PHP教程