我正在尝试在我的网站上获取部分 URL
在这个情况下:
http://mywebsite/filexx/yyyyy/abaete/374
$url2 = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
if(preg_match("/\/(\d+)$/",$url2,$matches))
{
$meuid = $matches[1];
}
它的作品,但让我们提出两种不同的情况:
http://mywebsite/filexx/yyyyy/abaete/374/?p=1
// i'm try to get the 374 (ID)
http://mywebsite/filexx/yyyyy/374/?p=1
// here the same
所以如果整数( 374 )或查询 374/?p=1 之前的部分,我想获得最后一部分。所以我想要374。
谢谢。