执行操作 URL 在 PHP 中动态生成
我不知道如何简单地描述这一点,这里什么也没有...
我正在编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想检查更多信息,可以构建一个正则表达式:
If you want to check for more you can build a regex:
您可能只想修改您的条件语句,如下所示:
You may just want to revise your Conditional Statement like so: