好的,我已经做了很多研究,但仍然没有发现任何东西可以使这项工作:
编写一个调用的 PHP 函数
isPositive
,该函数接受一个表示整数的参数,当整数为正时返回 true,当整数为负时返回 false。顺便说一句,0是一个正数。
这就是我需要做的。我尝试了不同的东西,但我没有得到任何东西来测试我的数字是正数还是负数。
谢谢你的帮助!
我得到了这个,但是,它不起作用:
function isPositive($val = NULL) // Add default to save php errors if nothing is passed
{
if ((int)$val) // type cast for security
{
if ($val >= 0)
{
return TRUE;
}
}
}
这是我尝试过的其他代码,但仍然无法正常工作:
function isPositive($number = NULL)
if ($number = <0)
return true;
else
return false;