PHP method to determine whether the data from the FORM form or URL parameter is an integer, formurl_PHP tutorial

WBOY
Release: 2016-07-12 08:56:20
Original
1171 people have browsed it

PHP method to determine whether the data from the FORM form or URL parameters is an integer, formurl

PHP determines whether the data from the FORM form or URL parameters is an integer, the is_int function is for FORM There is no way to determine whether the data coming from the form or URL parameters is an integer, because the data coming from the FORM is a string.
Use is_numeric to determine whether it is a numeric type, and then determine whether there is a decimal point to determine whether it is an integer

if(!is_numeric($page)||strpos($page,".")!==false){
echo "不是整数";
}else{
echo "是整数";
}
Copy after login

Sometimes we need a method to determine whether the id is a number:

How to judge numbers in dedecms

$cid = empty($cid)? 1 : intval(preg_replace("/[^-\d]+[^\d]/",'', $cid));
Copy after login

It is recommended that you filter the key parameters. Such as digital regular filtering
Copy code The code is as follows:
if(preg_match("/^d*$/",$fgid)) echo('is a number');
else echo('not a number');

Or use function
Copy code The code is as follows:
if(is_numeric($fgid)) echo('is a number');
else echo('not a number');

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1113691.htmlTechArticlePHP method to determine whether the data from a FORM form or URL parameter is an integer, formurl PHP determines whether the FORM form or URL parameter is an integer Whether the incoming data is an integer, the is_int function is used for FORM forms or URL parameters...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!