URLの最後のパスセグメントを取得したいのですが:
http://blabla/bla/wce/news.php
またhttp://blabla/blablabla/dut2a/news.php
たとえば、これら2つのURLで、パスセグメント「wce」と「dut2a」を取得します。
を使おうとしまし$_SERVER['REQUEST_URI']
たが、URLパス全体を取得しました。
URLの最後のパスセグメントを取得したいのですが:
http://blabla/bla/wce/news.php
またhttp://blabla/blablabla/dut2a/news.php
たとえば、これら2つの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);
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
}
私のために働く!楽しみ!そして、以前の回答への称賛!!!
別の解決策:
$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