HTML集体形式的说明

时间:2018-07-18 13:46:54

标签: php html laravel

寻求帮助以了解html集体。 这是两个html代码...

@foreach($images as $image)
<img class="card-img-top"
   src="{{url($image->image? 'uploads/'.$image->image:'images/noimage.jpg')}}"
   alt="{{$image->description}}" width="100%" height="180px"/>

{{ucwords($image->description)}}

我看到这已在教程中使用。谁能帮助我了解url的含义以及使用ucword的原因

谢谢!!!提前

1 个答案:

答案 0 :(得分:1)

第一个是laravel帮助器,您可以在文档中找到所有关于它的信息。

  

url函数生成给定路径的标准URL   https://laravel.com/docs/5.6/helpers#method-url

第二个是php原生函数。

  

大写字符串中每个单词的第一个字符   http://php.net/manual/en/function.ucwords.php