PHP if not statements

后端 未结 7 2066
南方客
南方客 2020-12-17 10:46

This may be the way my server is set up, but I\'m banging my head against the wall. I\'m trying to say that if $action has no value or has a value that is not \

相关标签:
7条回答
  • 2020-12-17 11:21

    You're saying "if it's not set or it's different from add or it's different from delete". You realize that a != x && a != y, with x != y is necessarily false since a cannot be simultaneously two different values.

    0 讨论(0)
提交回复
热议问题