Da'sBlog

laravel学习零散知识点

<?php
$firstname = “Bill”;
$lastname = “Gates”;
$age = “60”;

$result = compact(“firstname”, “lastname”, “age”);

print_r($result);
?>
compact 紧凑的

动人的; 雄辩的,有口才的; 有说明力的; 富于表情的,逼真的;
eloquent
英文发音:[‘lærəvel]

作者 Taylor Otwell

In Narnia, Cair Paravel is the name of the castle where the kings and queens of Narnia live. Laravel rhymes with Paravel. I thought the name had a classy and sophisticated ring to it.— Taylor Otwell —

Laravel这个名字来自于纳尼亚传奇中的Cair Paravel城堡。Laravel 和Paravel 的发音相似,Taylor认为Laravel这个名字韵味深长而又优雅,所以命名为Laravel。
Cair Paravel 中的Paravel发音为[‘pærəvel] 推断Laravel发音取[‘lærəvel]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{!! !!} 相当于 <?php echo $value; ?>
{{ }} 相当于 <?php echo htmlspecialchars($value); ?>
csrf_field()
csrf_field 函数生成一个包含 CSRF 令牌值的 HTML 隐藏域,例如,使用Blade语法示例如下:
{!! csrf_field() !!}
{{{}}} 完全转换html
@if()
@else
ss
@endif
@foreach()
@endforeach
@for
@endfor
@while
@endwhile
csrf_token()
csrf_token 函数获取当前 CSRF 令牌的值:
$token = csrf_token();

php artisan make:controller myController
php artisan route:list

laravel collect

laravel 请求 query get has exists
has 和exists 的区别 has 判断 是否存在此参数 其此参数不为空
检索 only
去除 Request::except(‘name’,’age’) 去除
url Request::url() 全部 fullUrl()

请求历史 flash flashExcept flashOnly old
请求文件 Request::file(‘’profile)->getSize()
getClientOriginalName
getClientOriginalExtension
session 教程http://blog.csdn.net/ghost_hell/article/details/53177072
Hash::make()

laravel
yield 用于定义个内容的片段 里面没有内容 只是内容的片段
section 用于定义给定片段的内容 定义了内容 可以多次继承覆盖

服务容器 都是依靠构造函数或者某些情况下通过 setter 方法将类依赖注入到类

坚持原创技术分享,您的支持将鼓励我继续创作!