Eyoucms程序开发:请求信息
如果要获取当前的请求信息,可以使用\think\Request
类,
除了下文中的
$request = Request::instance();
也可以使用助手函数
$request = request();
当然,最方便的还是使用注入请求对象的方式来获取变量。
例如:
获取URL信息
$request = Request::instance();
// 获取当前域名
echo 'domain: ' . $request->domain() . '
';
// 获取当前入口文件
echo 'file: ' . $request->baseFile() . '
';
// 获取当前URL地址 不含域名
echo 'url: ' . $request->url() . '
';
// 获取包含域名的完整URL地址
echo 'url with domain: ' . $request->url(true) . '
';
// 获取当前URL地址 不含QUERY_STRING
echo 'url without query: ' . $request->baseUrl() . '
';
// 获取URL访问的ROOT地址
echo 'root:' . $request->root() . '
';
// 获取URL访问的ROOT地址
echo 'root with domain: ' . $request->root(true) . '
';
// 获取URL地址中的PATH_INFO信息
echo 'pathinfo: ' . $request->pathinfo() . '
';
// 获取URL地址中的PATH_INFO信息 不含后缀
echo 'pathinfo: ' . $request->path() . '
';
// 获取URL地址中的后缀信息
echo 'ext: ' . $request->ext() . '
';
输出结果为:
domain: http://tp5.com
file: /index.php
url: /index/index/hello.html?name=thinkphp
url with domain: http://tp5.com/index/index/hello.html?name=thinkphp
url without query: /index/index/hello.html
root:
root with domain: http://tp5.com
pathinfo: index/index/hello.html
pathinfo: index/index/hello
ext: html
设置/获取 模块/控制器/操作名称
$request = Request::instance();
echo "当前模块名称是" . $request->module();
echo "当前控制器名称是" . $request->controller();
echo "当前操作名称是" . $request->action();
如果当前访问的地址是 http://serverName/index.php/index/hello_world/index
输出结果为:
当前模块名称是index
当前控制器名称是HelloWorld
当前操作名称是index
设置模块名称值需要向module方法中传入名称即可,同样使用于设置控制器名称和操作名称
Request::instance()->module('module_name');
获取请求参数
$request = Request::instance();
echo '请求方法:' . $request->method() . '
';
echo '资源类型:' . $request->type() . '
';
echo '访问ip地址:' . $request->ip() . '
';
echo '是否AJax请求:' . var_export($request->isAjax(), true) . '
';
echo '请求参数:';
dump($request->param());
echo '请求参数:仅包含name';
dump($request->only(['name']));
echo '请求参数:排除name';
dump($request->except(['name']));
输出结果为:
请求方法:GET
资源类型:html
访问ip地址:127.0.0.1
是否Ajax请求:false
请求参数:
array (size=2)
'test' => string 'ddd' (length=3)
'name' => string 'thinkphp' (length=8)
请求参数:仅包含name
array (size=1)
'name' => string 'thinkphp' (length=8)
请求参数:排除name
array (size=1)
'test' => string 'ddd' (length=3)
获取路由和调度信息
hello方法修改如下:
$request = Request::instance();
echo '路由信息:';
dump($request->route());
echo '调度信息:';
dump($request->dispatch());
路由定义为:
return [
'hello/:name' =>['index/hello',[],['name'=>'\w+']],
];
访问下面的URL地址:
http://serverName/hello/thinkphp
输出信息为:
路由信息:
array (size=4)
'rule' => string 'hello/:name' (length=11)
'route' => string 'index/hello' (length=11)
'pattern' =>
array (size=1)
'name' => string '\w+' (length=3)
'option' =>
array (size=0)
empty
调度信息:
array (size=2)
'type' => string 'module' (length=6)
'module' =>
array (size=3)
0 => null
1 => string 'index' (length=5)
2 => string 'hello' (length=5)
设置请求信息
如果某些环境下面获取的请求信息有误,可以手动设置这些信息参数,使用下面的方式:
$request = Request::instance();
$request->root('index.php');
$request->pathinfo('index/index/hello');
相关文档
- 在任意页面通过Ajax不跳转在当前页面获取搜索结果
- 迅睿CMS:附件缩略图信息更新
- 当前栏目如何调用同级栏目?
- 当前栏目如何调用子栏目?
- 获取当前文章页面栏目名称和栏目链接栏目图片的方法
- EYOUCMS 当前位置导航的修改方法
- 列表分页样式的修改
- 定制的零件列表的标签调用方法
- 多语言或多城市开启则显示,否则隐藏的判断
- 自增标签循环+1的方法
- 获取顶级栏目下是否3级,并输出指定的字符
- 在线留言单选框选择的判断问题
- 获取当前文档url地址的方法
- 文章内容页如何获取上一篇下一篇
- 在其它页面调用单页文章内容的方法
- 易优CMS指定文章列表获取tag标签
- EYOU 广告备注信息调用代码
- EYOU 当前栏目页判断有无子栏目
- 文章列表下的描述判断无描述内容时显示自定义内容
- 搜索功能的调用代码
上一篇: Eyoucms程序开发:资源控制器
下一篇: Eyoucms程序开发:输入变量