Home  >  Article  >  php教程  >  用正则表达式判断输入的数字是否合法的例子

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

WBOY
WBOYOriginal
2016-06-13 11:19:551389browse



    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