Home  >  Article  >  Backend Development  >  laravel - PATHINFO模式是thinkphp特有的吗?

laravel - PATHINFO模式是thinkphp特有的吗?

WBOY
WBOYOriginal
2016-06-06 20:25:061691browse

thinkphp中有四种URL模式,PATHINFO模式是thinkphp特有的吗?laravel中是不是不存在这样的概念?

回复内容:

thinkphp中有四种URL模式,PATHINFO模式是thinkphp特有的吗?laravel中是不是不存在这样的概念?

pathinfo当然不是某个框架特有的,pathinfo严格上讲是HTTP服务器提供的一个预定义变量,在许多的框架中有一个重要的组件叫做路由器,这个组件可以通过使用pathinfo来实现。

考虑以下代码:

<code class="php"># filename:./testpathinfo.php
<?php echo $_SERVER['PATH_INFO'];</code></code>

当我直接请求该文件时(留意地址栏):

laravel - PATHINFO模式是thinkphp特有的吗?

若文件未得到pathinfo参数时未定义该值,这时如果我这样请求(留意地址栏):

laravel - PATHINFO模式是thinkphp特有的吗?

所以,该功能配合rewrite功能可实现去除地址中的请求文件。

另外,PHP提供名为pathinfo()的函数,用于提取路径的信息:

参考:
PHP manual: pathinfo()
PHP manual: $_SERVER

Statement:
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