27

我想获取 URL 中的最后一个路径段:

  • http://blabla/bla/wce/news.php或者
  • http://blabla/blablabla/dut2a/news.php

例如,在这两个 URL 中,我想获取路径段:'wce' 和 'dut2a'。

我尝试使用$_SERVER['REQUEST_URI'],但我得到了整个 URL 路径。

4

9 回答 9

52

尝试:

$url = 'http://blabla/blablabla/dut2a/news.php';
$tokens = explode('/', $url);
echo $tokens[sizeof($tokens)-2];

假设$tokens至少有 2 个元素。

于 2010-02-16T13:51:44.567 回答
29

试试这个:

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
于 2010-02-16T13:53:13.363 回答
24

这很容易

<?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将返回父目录的路径

http://php.net/manual/en/function.dirname.php

http://php.net/manual/en/function.basename.php

于 2010-02-16T16:18:17.130 回答
12

试试这个:

 $parts = explode('/', 'your_url_here');
 $last = end($parts);
于 2010-02-16T13:53:16.920 回答
1
$arr =  explode("/", $uri);
于 2010-02-16T13:52:14.330 回答
1

另一种解决方案:

$last_slash = strrpos('/', $url);
$last = substr($url, $last_slash);

1:获取最后一个斜线位置 2:获取最后一个斜线和字符串末尾之间的子字符串

看这里:测试

于 2011-06-07T08:44:42.000 回答
1

如果要处理绝对 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

于 2011-09-07T20:54:31.180 回答
1

我给自己写了一个小函数来获取 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
}

为我工作!享受!并感谢之前的答案!!!!

于 2013-03-06T06:49:48.797 回答
0

这将保留最后一个斜线之后的部分。
不用担心爆炸,例如当没有斜线时。

$url = 'http://blabla/blablabla/dut2a/news.php';
$url = preg_replace('~.*/~', '', $url);

会给

news.php
于 2021-03-25T07:25:40.387 回答