27

URLの最後のパスセグメントを取得したいのですが:

  • http://blabla/bla/wce/news.phpまた
  • http://blabla/blablabla/dut2a/news.php

たとえば、これら2つの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

URL の最後のディレクトリ/フォルダーを取得する小さな関数を自分で作成しました。理論的なものではなく、実際の/既存の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 に答える
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 に答える