现在我使用此代码检查?spt=01
的网址:
if(isset($_GET['spt']) && $_GET['spt']=='01'){
include('01.php');
}
但是,我宁愿做的是检查文件名末尾的URL。
实施例:
http://example.com/folder/subfolder/page-name-goes-here.php
那么如何查看-name-
的网址然后我才能执行php include('01.php')
?
答案 0 :(得分:0)
您想要检查$_SERVER['REQUEST_URI']
数组http://php.net/manual/en/reserved.variables.server.php
$_SERVER