[Laravel]Laravellリングでの制御の詳細
5423 ワード
ループ内のより多くの制御
実習コード
resources/views/home/index.blade.php
{{-- app을 상속 받는다. --}}
@extends('layouts.app')
{{-- app title은 Home page 라고 출력 --}}
@section('title', 'Home page')
{{-- 섹션을 열고 app을 통하여 Hello world 출력 --}}
@section('content')
<h1>Hello world!</h1>
<div>
@for ($i = 0; $i < 10; $i++)
<div>The current value is {{ $i }}</div>
@endfor
</div>
<div>
@php $done = false @endphp
@while (!$done)
<div>I'm not done!</div>
@php
if (random_int(0, 1) === 1) $done = true
@endphp
@endwhile
</div>
{{-- 마지막으로 섹션을 끝내야 한다. endsection --}}
@endsection
結果
説明:
文の中でランダムに0,1の中で1の場合、don=trueはループの終了を表し、0はループの継続を表す.
Reference
この問題について([Laravel]Laravellリングでの制御の詳細), 我々は、より多くの情報をここで見つけました https://velog.io/@bin612/Laravel-Laravel-루프-내부의-더-많은-제어テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol