从网址获取号码的最简单方法是什么?

发布于 2024-11-01 18:44:41 字数 609 浏览 2 评论 0原文

我希望有人可以帮助我,我已经创建了这样的网址

/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

从网址中删除数字的最简单方法是什么?

我没有使用这样的变量:

/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 中的数字来动态调用页面上的内容。

如果网址是: /this/is/a/test/index-3.asp 它应该使用 3 并根据它匹配内容,类似于我要调用

?没有=3

我为此使用 PHP...

url 结构将始终将变量定义为与最后一个 '-' [the-number] '.asp' 匹配,

谢谢

Gerald Ferreira

I am hoping someone can help me, I have created url's like this

/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

What is the easiest way to strip the number from the URL?

Instead of using variables like this:

/this/is/a/test/index.asp?no=1
/this/is/a/test/index.asp?no=2
/this/is/a/test/index.asp?no=3

to create variables I am using the number in the URL to dynamically call the content on the page.

If the url is: /this/is/a/test/index-3.asp it should use the 3 and match the content according to it, similar as if I were to call

?no=3

I am using PHP for this...

The url structure will always have the variable define as match the last '-' [the-number] '.asp'

Thanks

Gerald Ferreira

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧人 2024-11-08 18:44:41

您可以使用 mod_rewrite 将 URL 模式映射到实际 URL。您可以通过类似于以下内容来实现您想要的:

RewriteRule ^index-([0-9]+).asp$ index.asp?no=$1

You could use mod_rewrite to map URL patterns to actual URLs. You could achieve what you want with something similar to the following:

RewriteRule ^index-([0-9]+).asp$ index.asp?no=$1
感情旳空白 2024-11-08 18:44:41

您应该能够将其与:

if (preg_match('/\-(\d+)\.asp$/', $_SERVER['REQUEST_URI'], $a)) {
    $pageNumber = $a[1];
} else {
    // failed to match number from URL
}

You should be able to match it out with:

if (preg_match('/\-(\d+)\.asp$/', $_SERVER['REQUEST_URI'], $a)) {
    $pageNumber = $a[1];
} else {
    // failed to match number from URL
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文