从url中获取号码的最简单方法是什么?
我希望有人能帮助我,我已经创建了这样的url
/this/is/a/test/index.asp
/this/is/a/test/index-1.asp
/this/is/a/test/index-2.asp
/this/is/a/test/index-3.asp
从URL中剥离数字的最简单方法是什么?
不使用这样的变量:
/this/is/a/test/index.asp?no=1
/this/is/a/test/index.asp?no=2
/this/is/a/test/index.asp?no=3
为了创建变量,我使用URL中的数字动态调用页面上的内容。
如果url是:/this/is/a/test/index-3.asp
,它应该使用3并根据它匹配内容,类似于我调用
?no=3
我正在使用PHP进行此操作.
url结构将始终将变量定义为匹配最后一个‘-’[the-number]‘.asp’
谢谢
Gerald Ferreira
解决方案
您应该能够使用以下命令进行匹配:
if (preg_match('/-(d+).asp$/', $_SERVER['REQUEST_URI'], $a)) {
$pageNumber = $a[1];
} else {
// failed to match number from URL
}
相关文章