para imprimir todos los valores de una array arr
Enfoque 1: Usando el bucle foreach : El bucle foreach
Sintaxis:
foreach( $array as $element ) { // PHP Code to be executed }
Ejemplo:
PHP
<?php // PHP program to print all // the values of an array // given array $array = array("Geek1", "Geek2", "Geek3", "1", "2","3"); // Loop through array foreach($array as $item){ echo $item . "\n"; } ?>
Producción
Geek1 Geek2 Geek3 1 2 3
Enfoque 2: uso de la función count() y for loop : la función count() se usa para contar el número de elementos en una array y for loop se usa para iterar sobre la array.
Sintaxis:
for (initialization; test condition; increment/decrement) { // Code to be executed }
Ejemplo:
PHP
<?php // PHP program to print all // the values of an array // given array $array = array("Geek1", "Geek2", "Geek3", "1", "2","3"); $items = count($array); // Loop through array for($num = 0; $num < $items; $num += 1){ echo $array[$num]. "\n"; } ?>
Producción
Geek1 Geek2 Geek3 1 2 3
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA