执行操作 URL 在 PHP 中动态生成

发布于 2024-11-07 10:23:52 字数 382 浏览 0 评论 0原文

我不知道如何简单地描述这一点,这里什么也没有...

我正在编写一个 PHP 脚本来执行一个操作,如果 URL 是一个特定的 URL,但是,该 URL 是 /ref/[VISITOR_USERNAME]。我想对其进行设置,以便只要 URL 为 /ref/[ANY_TEXT],就会执行该操作。

    if($_SERVER['REQUEST_URI'] == '/ref/' . string . '') {
    ...perform action...
}

如何告诉脚本如果 URL 是 /ref/ 以及其后的任何内容来执行操作?

另外,我意识到还有其他可能更好的方法来做到这一点,但为了我想做的事情,我需要这样做。

提前致谢。

I don't know how to easily describe this, here goes nothing...

I am writing a PHP script to perform an action if the URL is a specific URL, however, the URL is /ref/[VISITOR_USERNAME]. I want to set it so that anytime the URL is /ref/[ANY_TEXT], the action will perform.

    if($_SERVER['REQUEST_URI'] == '/ref/' . string . '') {
    ...perform action...
}

How do I tell the script that if the URL is /ref/ and anything following that to perform the action?

Also, I realize there are other, probably better ways to do this, but for the sake of what I am trying to do, I need to do it this way.

Thanks in advance.

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

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

发布评论

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

评论(3

葬﹪忆之殇 2024-11-14 10:23:52
if(substr($_SERVER['REQUEST_URI'], 0, 5) == '/ref/') {
  ...
}
if(substr($_SERVER['REQUEST_URI'], 0, 5) == '/ref/') {
  ...
}
追星践月 2024-11-14 10:23:52

如果您想检查更多信息,可以构建一个正则表达式:

if(preg_match('/\/ref\/.+/', $_SERVER['REQUEST_URI'])) {
    ...
}

If you want to check for more you can build a regex:

if(preg_match('/\/ref\/.+/', $_SERVER['REQUEST_URI'])) {
    ...
}
不奢求什么 2024-11-14 10:23:52

您可能只想修改您的条件语句,如下所示:

    <?php
    // CHECK THAT THE REQUEST URL CONTAINS "ref/[ANY_STRING_AT_ALL_INCLUDING_SLASHES]"
    if( preg_match("#ref\/.*#", $_SERVER['REQUEST_URI'])) {
        // NOW,GET TO WORK CODER... ;-)
    }

You may just want to revise your Conditional Statement like so:

    <?php
    // CHECK THAT THE REQUEST URL CONTAINS "ref/[ANY_STRING_AT_ALL_INCLUDING_SLASHES]"
    if( preg_match("#ref\/.*#", $_SERVER['REQUEST_URI'])) {
        // NOW,GET TO WORK CODER... ;-)
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文