Blogger Information
Blog 37
fans 0
comment 1
visits 29647
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
练习一下blade模板的语法。如:变量渲染、foreach、if...else...2、include、section-2019-11-05
H先生
Original
745 people have browsed it

实例

<div class="header">
    @foreach($navs as $nav)
    <a href="{{$nav['url']}}">{{$nav['title']}}</a>
    @endforeach
</div>

<div class="header">
    @for($i=0;$i<count($navs);$i++)
        <a href="{{$navs[$i]['url']}}">{{$navs[$i]['title']}}</a>
    @endfor
</div>

<div class="header">
    <?php $i=0; ?>
    @while($i<count($navs))
        <a href="{{$navs[$i]['url']}}">{{$navs[$i]['title']}}</a>
    <?php $i++; ?>
    @endwhile
</div>

运行实例 »

点击 "运行实例" 按钮查看在线实例

1.png





1.png

















Correction status:qualified

Teacher's comments:blade语法非常的优雅
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post