在php中使用foreach语句进行多个数组回显
可能的重复:
PHP foreach 循环中的多个索引变量
我们可以使用单个数组来回显多个数组吗? foreach
语句?
尝试按照以下方式进行操作但没有成功:
foreach($cars, $ages as $value1, $value2)
{
echo $value1.$value2;
}
Possible Duplicate:
Multiple index variables in PHP foreach loop
Can we echo multiple arrays using single foreach
statement?
Tried doing it in following way but wasn't successful:
foreach($cars, $ages as $value1, $value2)
{
echo $value1.$value2;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设两个数组具有相同数量的元素,
如果不能保证数组的长度相同,那么这应该可行,那么
如果您只想连接两个数组,则可以这样做,您可以这样做
assuming both arrays have the same amount of elements, this should work
if the arrays are not guaranteed to be the same length then you can do something like this
if you just want to join the two arrays, you can do it like this