从URL获取路径

时间:2010-08-24 20:09:50

标签: php url

寻找一种从PHP中的URL获取路径的方法:

我想:http://example.com/hurrdurr

并制作:hurrdurr

我只想要.com/

之后的文字

我可以用修剪吗?

2 个答案:

答案 0 :(得分:18)

使用parse_url提取所需信息。

例如:

$url = "http://twitter.com/pwsdedtch";
$path = parse_url($url, PHP_URL_PATH); // gives "/pwsdedtech"
$pathWithoutSlash = substr($path, 1); // gives "pwsdedtech"

答案 1 :(得分:7)

针对此特定情况,您也可以使用“basename”来实现目的。

$var='http://twitter.com/pwsdedtch';    
echo basename($var);
// pwsdedtech