PHP 如果 a = 1 或 2 则执行某些操作
我有条件 PHP 工作正常,条件是 url 以 url-1 结尾:
if ($currentpage == '/url-1') {
如何更改此设置,以便 url 可以是 url-1 或 url-2?我无法正确理解语法。 谢谢
I have conditional PHP working fine, the condition is if the url ends with url-1:
if ($currentpage == '/url-1') {
How can I change this so the url can be either url-1 or url-2? I cant get the syntax right.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您尝试过正则表达式吗?
这样,如果您有很多页面(1,2,...),则不需要每个页面都有特殊情况。
Have you tried REGEX?
That way, if you have lots of pages (1,2,...), you don't need a special case for each.
尝试
try
你需要|| (逻辑或)运算符。有关逻辑运算符的更多信息。
您可以像这样使用它:
确保不要使用:
因为这是有效的,但没有达到您期望的效果。
You need the || (logical OR) operator. More information on logical operators.
You can use it like so:
Be sure not to use:
as this is valid but does not do what you would expect it to do.
伙计……这很难相信……
Fella...that was hard to believe....