foo*_*foo 49 php math variables numbers
有这样的事吗?
例如
$var = -5;
echo thefunction($var); // should be 0
$var = 5;
echo thefunction($var); // should be 5
Run Code Online (Sandbox Code Playgroud)
不是内置的,但是,这里有:
function thefunction($var){
return ($var < 0 ? 0 : $var);
}
Run Code Online (Sandbox Code Playgroud)
希望这可以帮助