使用php获取动态路径网址?

时间:2016-10-19 12:28:19

标签: php

使用php获取动态路径网址?

我有两种类型的网址:

输入1:https://www.example.com/person/1

类型2:https://www.example.com/search/word/1

所以我希望从类型1获取https://www.example.com/person/

我希望从类型2获取https://www.example.com/search/word/

如何使用单个PHP代码执行此操作?

1 个答案:

答案 0 :(得分:0)

使用preg_replace()删除字符串的最后一部分。正则表达式选择url末尾的数字并将其删除。

$url = preg_replace("/\d+$/", "", $url);

请参阅demo

中的结果