Überprüfen Sie, ob eine Zahl innerhalb eines Bereichs liegt
W2017-11-20 16:17:03
0
2
1145
<?php
$int = 12;
$min = 1;
$max = 100;
if(filter_var($int,'FILTER_VALIDATE_INT', array("options"=>array("min_range"=>$min,"max_range"=>$max))) === false){
echo ("The number is valid");
}else{
echo ("The number is not valid");
}
?>
先 $arr = range(1,100);
foreach($arr as $k $v)
{
if($int === $v)
{
echo '在范围内';
}else{
echo '不在';
}
这样行吗?
把'FILTER_VALIDATE_INT'去掉引号就行了