0
echo $_SERVER['REQUEST_URI']."\n";
echo strrchr($_SERVER['REQUEST_URI'], '/');

strrchr返回与以前相同的地址,但我需要所有直到最后/

更新: $_SERVER['REQUEST_URI'] = /users/dev/index.php 我需要/users/dev/

4

3 回答 3

1

您可以使用substr()strrpos()

$url = '/users/dev/index.php';
echo substr($url, 0, strrpos($url, '/'));
于 2012-10-03T07:42:14.107 回答
0

如果您有不同的 .php 文件名,请使用正则表达式

$s = '/users/dev/index.php';

preg_match('~^(.*?)([^/]+\.php)~', $s, $m);
print_r($m);

如果您只有 index.php,请使用 substr()

$m = substr($s, 0, strpos($s, 'index.php'));
print_r($m);
于 2012-10-03T07:50:25.413 回答
0

检查这个

print_r(pathinfo($_SERVER['REQUEST_URI'],PATHINFO_DIRNAME));
于 2012-10-03T07:50:37.637 回答