我必须在下面过滤此 URL 以获取页码:
http://www.domain.com/string/999/string-article-title/999
我想在这个 url 模式中过滤最后 3 位数字(这与页面有关)
我试过这个,但没有成功:
preg_match("/http::\/\/www.domain.com\/string\/999\/string-article-title\/^[0-9]{3}$", $nlink, $matches, PREG_OFFSET_CAPTURE)
如何过滤这些模式,以便我可以从中获取 URL
"http://www.domain.com/string/999/string-article-title/1 to 999"
PS:对不起我的英语不好