作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有很长的如果:
if(rand(1, 100) == 22 && $smth < time() &&
$smths > 5 && $sxsxsx > 250 &&
!$_SESSION['false'])
{
echo "wow, big if just happened!";
}
如何写得更“漂亮”?
最佳答案
我更喜欢在 bool 运算符之前中断。
if(rand(1, 100) == 22
&& $smth < time()
&& $smths > 5
&& $sxsxsx > 250
&& !$_SESSION['false']
)
关于php - 长IF怎么写更漂亮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5419660/
我是一名优秀的程序员,十分优秀!