如果我有一个网址,例如www.example.com/test/example/product.html
我怎么才能得到测试部分(所以顶级)
我知道你会使用$_SERVER['REQUEST_URI']
,也许substr
或者trim
但是我不确定如何做到这一点,谢谢!
如果我有一个网址,例如www.example.com/test/example/product.html
我怎么才能得到测试部分(所以顶级)
我知道你会使用$_SERVER['REQUEST_URI']
,也许substr
或者trim
但是我不确定如何做到这一点,谢谢!
用 将字符串拆分为一个数组explode
,然后取出您需要的部分。
$whatINeed = explode('/', $_SERVER['REQUEST_URI']);
$whatINeed = $whatINeed[1];
如果你使用 PHP 5.4,你可以做$whatINeed = explode('/', $_SERVER['REQUEST_URI'])[1];
<?php
$url = 'http://username:password@hostname.foo.bar/test/example/product.html?arg=value#anchor';
print_r(parse_url($url));
$urlArray = parse_url($url);
/* Output:
Array
(
[scheme] => http
[host] => hostname
[user] => username
[pass] => password
[path] => /test/example/product.html
[query] => arg=value
[fragment] => anchor
)
*/
echo dirname($urlArray[path]);
/* Output:
/test
*/