我需要在/和/之间获取url的最后一个字符串内容
例如:
http://mydomain.com/get_this/
or
http://mydomain.com/lists/get_this/
我需要得到 get_this 在 url 中的位置。
我需要在/和/之间获取url的最后一个字符串内容
例如:
http://mydomain.com/get_this/
or
http://mydomain.com/lists/get_this/
我需要得到 get_this 在 url 中的位置。
假设总是有一个斜杠:
$parts = explode('/', $url);
$get_this = $parts[count($parts)-2]; // -2 since there will be an empty array element due to the trailing slash
如果不:
$url = trim($url, '/'); // If there is a trailing slash in this URL instance get rid of it so we're always sure the last part is where we expect it
$parts = explode('/', $url);
$get_this = $parts[count($parts)-1];
像这样的东西应该工作。
<?php
$subject = "http://mydomain.com/lists/get_this/";
$pattern = '/\/([^\/]*)\/$/';
preg_match($pattern, $subject, $matches, PREG_OFFSET_CAPTURE, 3);
print_r($matches);
?>
只需使用parse_url()
和explode()
:
<?php
$url = "http://mydomain.com/lists/get_this/";
$path = parse_url($url, PHP_URL_PATH);
$path_array = array_filter(explode('/', $path));
$last_path = $path_array[count($path_array) - 1];
echo $last_path;
?>
你可以试试这个:
preg_match("/http:\/\/([a-z0-9\.]+)\/(.+)\/(.*)\/?/", $url, $matches);
print_r($matches);