欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php while循环得到循环次数_PHP

程序员文章站 2024-02-15 22:57:46
...
复制代码 代码如下:
$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;
?>

在实际工作,偶尔会用到的。
相关标签: while循环