将负数转为 0 的默认 php 函数
有这样的事吗?
例如
$var = -5;
echo thefunction($var); // should be 0
$var = 5;
echo thefunction($var); // should be 5
Is there such a thing?
for eg
$var = -5;
echo thefunction($var); // should be 0
$var = 5;
echo thefunction($var); // should be 5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试
max($var,0)
,这将达到预期的效果。有关详细信息,请参阅手册页。Try
max($var,0)
, which will have the desired effect. See the manual page for more information.不是内置的,但是,这里有:
希望这有帮助
Not built-in but, here you have:
Hope this helps
在 PHP 中,检查整数是否为负数,如果是则将其设置为零很容易,但我一直在寻找比以下更短(并且可能更快)的东西:
嗯,这是一个非常快速的检查和重置,但是有一个函数 max 也可以做到这一点,并且它也适用于数组。
max() 函数返回两个指定数字中最大值的数字。
In PHP, checking if a integer is negative and if it is then setting it to zero is easy, but I was looking for something shorter (and potentially faster) than:
Well, this is a very quick check and reset, but there is a function max that does this too and it works with arrays too.
The max() function returns the number with the highest value of two specified numbers.
那应该可以解决问题
that should do the trick
简单地:
Simply: