“PHP Array Loop” Ответ

PHP Array Loop

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

PHP итерация через массив

$arr = ['Item 1', 'Item 2', 'Item 3'];

foreach ($arr as $item) {
  var_dump($item);
}
garzj

PHP для массива петли

$CodeWallTutorialArray = ["Eggs", "Bacon", "HashBrowns", "Beans", "Bread", "RedSauce"];

        for ($i = 0; $i < count($CodeWallTutorialArray); $i++)  {
            echo $CodeWallTutorialArray[$i] ."<br />";
        }Copy
Nutty Narwhal

PHP Array Loop

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

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

PHP петля через массив

foreach($array as $item=>$values){
     echo $values->filepath;
    }
Bewildered Beetle

PHP Loop Array

/**
 * 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

Ответы похожие на “PHP Array Loop”

Вопросы похожие на “PHP Array Loop”

Больше похожих ответов на “PHP Array Loop” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования