“Lista de bucle de PHP” Código de respuesta

Lista de bucle de PHP

for ($i = 0; $i < count($array); $i++) {
    echo $array[$i]['filename'];
    echo $array[$i]['filepath'];
}
Clever Cardinal

Lista de bucle de PHP

foreach($array as $item) {
    echo $item['filename'];
    echo $item['filepath'];

    // To know what's in $item
    echo '<pre>'; var_dump($item);
}
Liyang Yu

PHP foreach

<?php
$age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");

foreach($age as $x => $val) {
  echo "$x = $val<br>";
}
?>
Mohammadali Mirhamed

bucle de matriz PHP

foreach($array as $item) {
    echo $item['filename'];
    echo $item['filepath'];

    // to know what's in $item
    echo '<pre>'; var_dump($item);
}
Clever Cardinal

matriz de bucle PHP

/**
 * Get the author of the post.
 */
public function user()
{
    return $this->belongsTo(User::class)->withDefault([
        'name' => 'Guest Author',
    ]);
}

/**
 * Get the author of the post.
 */
public function user()
{
    return $this->belongsTo(User::class)->withDefault(function ($user, $post) {
        $user->name = 'Guest Author';
    });
}
Envious Elephant

Respuestas similares a “Lista de bucle de PHP”

Preguntas similares a “Lista de bucle de PHP”

Más respuestas relacionadas con “Lista de bucle de PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código