php写语句IF ELSE条件间隔/范围

时间:2016-01-04 06:44:10

标签: php

我在IF ELSE中编写间隔条件时遇到问题:这是我的条件:

if(1<x<=30)
{ statement } 
else
{ statement }

4 个答案:

答案 0 :(得分:3)

如果要检查间隔/范围,可以使用以下方法执行此操作:

sc [<ServerName>] create [<ServiceName>] [type= {own | share | kernel | filesys | rec | interact type= {own | share}}] [start= {boot | system | auto | demand | disabled}] [error= {normal | severe | critical | ignore}] [binpath= <BinaryPathName>] [group= <LoadOrderGroup>] [tag= {yes | no}] [depend= <dependencies>] [obj= {<AccountName> | <ObjectName>}] [displayname= <DisplayName>] [password= <Password>]

答案 1 :(得分:0)

您可以这样使用:

https://support.dnsimple.com/articles/heroku-error-nosuchapp/

答案 2 :(得分:0)

您可以像这样使用::

if(1<x && x<=30)
{ statement } 
else
{ statement }

答案 3 :(得分:0)

简单来说,三元算子在实践中是最好的。

$result  = ($x > 1 && $x<=30) ? true : false;