Home > PHP Framework > ThinkPHP > How to get the requested URL in thinkphp5

How to get the requested URL in thinkphp5

PHPz
Release: 2023-06-03 14:33:33
forward
2243 people have browsed it

thinkphp5 method to obtain the requested URL: 1. Use the "$request = Request::instance();" method of the "\think\Request" class to obtain the current URL information; 2. . Obtain the complete URL address including the domain name through the built-in helper function "$request->url()".

THINKPHP5 Get the URL information of the current page

If you want to get the URL information of the current page, you can use the request class that comes with thinkphp to get the current URL information.

Use the \think\Request class

<code>$request = Request::instance();<br></code>
Copy after login

or use the built-in helper function

<code>$request = request();<br></code>
Copy after login
$request = Request::instance();
// 获取当前域名
echo &#39;domain: &#39; . $request->domain() . &#39;<br/>&#39;;
// 获取当前入口文件
echo &#39;file: &#39; . $request->baseFile() . &#39;<br/>&#39;;
// 获取当前URL地址 不含域名
echo &#39;url: &#39; . $request->url() . &#39;<br/>&#39;;
// 获取包含域名的完整URL地址
echo &#39;url with domain: &#39; . $request->url(true) . &#39;<br/>&#39;;
// 获取当前URL地址 不含QUERY_STRING
echo &#39;url without query: &#39; . $request->baseUrl() . &#39;<br/>&#39;;
// 获取URL访问的ROOT地址
echo &#39;root:&#39; . $request->root() . &#39;<br/>&#39;;
// 获取URL访问的ROOT地址
echo &#39;root with domain: &#39; . $request->root(true) . &#39;<br/>&#39;;
// 获取URL地址中的PATH_INFO信息
echo &#39;pathinfo: &#39; . $request->pathinfo() . &#39;<br/>&#39;;
// 获取URL地址中的PATH_INFO信息 不含后缀
echo &#39;pathinfo: &#39; . $request->path() . &#39;<br/>&#39;;
// 获取URL地址中的后缀信息
echo &#39;ext: &#39; . $request->ext() . &#39;<br/>&#39;;
Copy after login

Output results

<code>domain: https://luweipai.cn<br/>file: /index.php<br/>url: /index/index/hello.html?name=luweipai<br/>url with domain: https://luweipai.cn/index/index/hello.html?name=luweipai<br/>url without query: /index/index/hello.html<br/>root:<br/>root with domain: http://luweipai.cn<br/>pathinfo: index/index/hello.html<br/>pathinfo: index/index/hello<br/>ext: html</code>
Copy after login

The above is the detailed content of How to get the requested URL in thinkphp5. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Why thinkphp has better performance than laravel?
From 1970-01-01 08:00:00
0
0
0
ThinkPHP Why use composer?
From 1970-01-01 08:00:00
0
0
0
thinkphp versions supported by php6
From 1970-01-01 08:00:00
0
0
0
thinkphp upload files
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template