How can I limit the max value of number?

后端 未结 9 2011
小蘑菇
小蘑菇 2021-01-19 11:09

I want to secure my page by checking if the value is digital (0,1,2,3) and if it is in the range from 0 to 120. I think ctype_digit function limits numbers, so

9条回答
  •  没有蜡笔的小新
    2021-01-19 11:20

    // Make sure it is an integer.
    $category = (int) $_GET['category'];
    
    if($category<0 OR $category>120){
       // Code to be executed if the number is out of range...
    }
    

提交回复
热议问题