课程
/后端开发
/PHP
/PHP进阶篇
用for遍历索引数组,暂不能输出
2014-08-18
源自:PHP进阶篇 1-7
正在回答
for($index = 0; $index < 1; $index++)
{
echo '<br>数组第'.$index.'值是:'.$fruit[$index];
}
已经输出了呀,只是你的遍历条件为$index<1,所以只输出了一个。
for($i=0; $i<3; $i++){ echo '<br>'.key($fruit).'是:'.current($fruit); next($fruit); } ?>
这个试试
大海_0029 提问者
用foreach
举报
轻松学习PHP中级课程,进行全面了解,用PHP快速开发网站程序
1 回答//手机号必须为11位数字,且为1开头 if (!preg_match('/^1\d{10}$/i', $user['mobile'])) { die('手机号不合法');
1 回答Cannot connect to already runningIDE instance.Exception: Process 2,776 is stillrunning
1 回答输出的结果为什么不是【string(6) "苹果"】?
2 回答PHP数组
1 回答关于构造函数私有方法