Home >Backend Development >PHP Tutorial >用正则表达式判断输入的数字是否合法的例子_PHP

用正则表达式判断输入的数字是否合法的例子_PHP

WBOY
WBOYOriginal
2016-06-01 12:32:571284browse

正则表达式



    Untitled



$in="2344";
if(ereg("^(-{0,1}|\+{0,1})[0-9]+(\.{0,1}[0-9]+)$",$in))
    echo "Ok!";
else
    echo "Sorry,Please input again!";
?>

很简单的嘛!



Statement:
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