Home > php教程 > php手册 > body text

php判断是否为数字

不言
Release: 2018-05-15 15:26:44
Original
42555 people have browsed it

我们用intval来判断用户输入的信息是否为数字,这个可以自动转换成数字,如果是0,返回的值也是假的,在php判断用户输入的是否为数字型或是否为数字型字符串,我们会用到is_numeric与intval函数来处理.实例代码如下:

$num  = 1; 
$num1 ='1'; 
$str  ='abc'; 
if( is_numeric( $num ) ) 
{ 
    echo $num.'是数字型'; 
} 
//1是数字型 
if( is_numeric( $num1) ) 
{ 
    echo $num1.'是数字型'; 
} 
else 
{ 
    echo $num1.'不是数字型'; 
}
Copy after login

//1是数字型

第二个实例为看还是数字型呢,这要看php是那类型的语言了,关键是php是弱语言型,所以就会自动把数字型字符转换成数字了,实例代码如下:

if( intval( $str ) ) 
{ 
    echo $str.'是数字'; 
} 
else 
{ 
    echo $str.'不是数字'; 
} 
//acd不是数字 
if( intval( $num1 ) ) 
{ 
    echo $num1.'是数字'; 
} 
else 
{ 
    echo $num1.'不是数字'; 
} 
//1是数字
Copy after login
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template