thinkphp5.0 | 视图
// 渲染模板输出 return $this->fetch('hello',['name'=>'thinkphp']); 方法 说明 fetch 渲染模板输出 display 渲染内容输出 assign 模板变量赋值 engin...
// 渲染模板输出 return $this->fetch('hello',['name'=>'thinkphp']); 方法 说明 fetch 渲染模板输出 display 渲染内容输出 assign 模板变量赋值 engin...
方法注入 如果你需要在Request请求对象中添加自己的方法,可以使用Request对象的方法注入功能,例如: // 通过hook方法注入动态方法 Request::hook('user','getUserInfo'); getUserIn...
判断请求类型 // 是否为 GET 请求 if (Request::instance()->isGet()) echo "当前为 GET 请求"; // 是否为 POST 请求 if (Request::instance()->...
输入变量 可以通过Request对象完成全局输入变量的检测、获取和安全过滤,支持包括$_GET、$_POST、$_REQUEST、$_SERVER、$_SESSION、$_COOKIE、$_ENV等系统变量,以及文件上传信息。 检测是否存在...
\think\Request $request = Request::instance(); 也可以使用助手函数 $request = request(); 获取url信息 $request = Request::instance(); /...
// 修改应用类库命名空间 'app_namespace' => 'application', namespace app\index\controller; use think\Controller; class Index ext...
读取配置 echo Config::get('配置参数1'); echo config('配置参数1'); dump(Config::get());//所有配置 Config::has('配置参数2');//判断配置是否存在 echo co...
环境要求: PHP >= 5.4.0 PDO PHP Extension MBstring PHP Extension CURL PHP Extension 1. 官网下载 http://www.thinkphp.cn/down.ht...
1、简介 Illuminate\Support\Collection 类为处理数组数据提供流式、方便的封装。例如,查看下面的代码,我们使用辅助函数 collect 创建一个新的集合实例,为每一个元素运行 strtoupper 函数,然后移除...
常用命令 查看所有artisan命令 php artisan list 查看命令 php artisan help migrate 运行tinker php artisan tinker 编写命令 自定义命令通常存放在 app/Consol...