如何确定变量的值是否介于两个不同的常量值之间?
例如,我如何使用 PHP 代码确定我有一个值
- 介于 1 和 10 之间或
- 介于 20 和 40 之间的变量?
How can I determine using PHP code that, for example, I have a variable that has a value
- between 1 and 10, or
- between 20 and 40?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
你的意思是像:
或者也许:
或者也许:
假设你想要:
Do you mean like:
or perhaps:
or maybe:
suppose you wanted:
很抱歉回答晚了,但是这个功能可以让你做到这一点。
Sorry for the late answer, but this function allow you to do that.
从标签“操作数”猜测您想要检查一个值?
Guessing from the tag 'operand' you want to check a value?
这是一个很好的解决方案。
我认为这个比上面的快
但是,这比其他的快3倍。
This is a good solution.
I think this one is faster than the above
But, this is 3 times faster than others.
试试这个
Try This
如果您只想检查值是否在范围内,请使用以下命令:
If you just want to check the value is in Range, use this: