我需要从URL获取最后一个字.所以例如我有以下URL:
http://www.mydomainname.com/m/groups/view/test
我只需要使用PHP“测试”,没有别的.我试图用这样的东西:
$words = explode(' ',$_SERVER['REQUEST_URI']); $showword = trim($words[count($words) - 1],'/'); echo $showword;
对我来说不行你能帮我吗?
非常感谢!!
通过使用正则表达式:
原文链接:https://www.f2er.com/php/138278.htmlpreg_match("/[^\/]+$/","http://www.mydomainname.com/m/groups/view/test",$matches); $last_word = $matches[0]; // test