Fork me on GitHub

随笔分类 -  Laravel5.2

laravel框架学习
摘要:## 1.基本用法 ## 2.控制结构 ## 3.模板引擎子视图 阅读全文
posted @ 2016-11-17 08:48 archer-wong 阅读(1839) 评论(0) 推荐(0) 编辑
摘要:1 基本响应 1.1 返回一个字符串,指定的字符串会被框架自动转换成 HTTP 响应。 Route::get('/', function () { return 'Hello World'; }); 1.2 返回一个完整的 Response 实例时,就能够自定义响应的 HTTP 状态码以及标头。 u 阅读全文
posted @ 2016-11-16 09:17 archer-wong 阅读(319) 评论(0) 推荐(0) 编辑
摘要:1 获取请求 1.1 获取请求的 URI 1>path 方法会返回请求的 URI。所以,如果接收到的请求目标是 http://domain.com/foo/bar,那么 path 方法就会返回 foo/bar: $uri = $request->path(); 2>is 方法可以验证接收到的请求 U 阅读全文
posted @ 2016-11-16 08:35 archer-wong 阅读(497) 评论(0) 推荐(0) 编辑
摘要:1 基本路由 1.1 定义路由的文件 app/Http/routes.php 1.2 最基本的路由: Route::get(''index", function () { return "hello world"; } 可用的路由方法: Route::get($uri, $callback); Ro 阅读全文
posted @ 2016-11-14 09:16 archer-wong 阅读(252) 评论(0) 推荐(0) 编辑