我想获取 URL 中的最后一个路径段:
http://blabla/bla/wce/news.php
或者http://blabla/blablabla/dut2a/news.php
例如,在这两个 URL 中,我想获取路径段:'wce' 和 'dut2a'。
我尝试使用$_SERVER['REQUEST_URI']
,但我得到了整个 URL 路径。
我想获取 URL 中的最后一个路径段:
http://blabla/bla/wce/news.php
或者http://blabla/blablabla/dut2a/news.php
例如,在这两个 URL 中,我想获取路径段:'wce' 和 'dut2a'。
我尝试使用$_SERVER['REQUEST_URI']
,但我得到了整个 URL 路径。
尝试:
$url = 'http://blabla/blablabla/dut2a/news.php';
$tokens = explode('/', $url);
echo $tokens[sizeof($tokens)-2];
假设$tokens
至少有 2 个元素。
试试这个:
function getLastPathSegment($url) {
$path = parse_url($url, PHP_URL_PATH); // to get the path from a whole URL
$pathTrimmed = trim($path, '/'); // normalise with no leading or trailing slash
$pathTokens = explode('/', $pathTrimmed); // get segments delimited by a slash
if (substr($path, -1) !== '/') {
array_pop($pathTokens);
}
return end($pathTokens); // get the last segment
}
echo getLastPathSegment($_SERVER['REQUEST_URI']);
我还使用评论中的一些 URL 对其进行了测试。我将不得不假设所有路径都以斜杠结尾,因为我无法确定 /bob 是目录还是文件。这将假定它是一个文件,除非它也有一个斜杠。
echo getLastPathSegment('http://server.com/bla/wce/news.php'); // wce
echo getLastPathSegment('http://server.com/bla/wce/'); // wce
echo getLastPathSegment('http://server.com/bla/wce'); // bla
这很容易
<?php
echo basename(dirname($url)); // if your url/path includes a file
echo basename($url); // if your url/path does not include a file
?>
basename
将返回路径的尾随名称组件dirname
将返回父目录的路径试试这个:
$parts = explode('/', 'your_url_here');
$last = end($parts);
$arr = explode("/", $uri);
另一种解决方案:
$last_slash = strrpos('/', $url);
$last = substr($url, $last_slash);
1:获取最后一个斜线位置 2:获取最后一个斜线和字符串末尾之间的子字符串
看这里:测试
如果要处理绝对 URL,则可以使用parse_url()
(它不适用于相对 URL)。
$url = 'http://aplicaciones.org/wp-content/uploads/2011/09/skypevideo-500x361.jpg?arg=value#anchor';
print_r(parse_url($url));
$url_path = parse_url($url, PHP_URL_PATH);
$parts = explode('/', $url_path);
$last = end($parts);
echo $last;
此处的完整代码示例:http: //codepad.org/klqk5o29
我给自己写了一个小函数来获取 URL 的最后一个目录/文件夹。它仅适用于真实/现有的网址,而不适用于理论上的网址。在我的情况下,情况总是如此,所以......
function uf_getLastDir($sUrl)
{
$sPath = parse_url($sUrl, PHP_URL_PATH); // parse URL and return only path component
$aPath = explode('/', trim($sPath, '/')); // remove surrounding "/" and return parts into array
end($aPath); // last element of array
if (is_dir($sPath)) // if path points to dir
return current($aPath); // return last element of array
if (is_file($sPath)) // if path points to file
return prev($aPath); // return second to last element of array
return false; // or return false
}
为我工作!享受!并感谢之前的答案!!!!
这将保留最后一个斜线之后的部分。
不用担心爆炸,例如当没有斜线时。
$url = 'http://blabla/blablabla/dut2a/news.php';
$url = preg_replace('~.*/~', '', $url);
会给
news.php