如何在PHP打印数组的所有值?
我们给出了一个包含一些数组元素的数组,任务是在PHP打印数组arr 的所有值。为了完成这项任务,我们在PHP有以下方法:
方法 1:使用foreach 循环: foreach循环用于迭代数组元素。 foreach 循环虽然迭代元素数组,但执行得到简化并完成循环。
句法:
foreach( $array as $element ) {
// PHP Code to be executed
}
例子:
PHP
PHP
输出
Geek1
Geek2
Geek3
1
2
3
方法2:使用count()函数和for循环: count()函数用于计算数组中元素的数量, for循环用于遍历数组。
句法:
for (initialization; test condition; increment/decrement) {
// Code to be executed
}
例子:
PHP
输出
Geek1
Geek2
Geek3
1
2
3