Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<?php
// Variable to check
$int = 122;
// Min value
$min = 1;
// Max value
$max = 200;
if (filter_var($int, FILTER_VALIDATE_INT, array("options" => array("min_range"=>$min, "max_range"=>$max))) === false) {
  echo("Variable value is not within the legal range");
} else {
  echo("Variable value is within the legal range");
}
?>
</body>
<!-- Mirrored from www.w3schools.com/php/phptryit.asp?filename=tryphp_func_validate_int3 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 18:10:00 GMT -->
</html>
Variable value is within the legal range