当前位置:Gxlcms > PHP教程 > php中判断是否为合法邮编(固定长度)_PHP教程

php中判断是否为合法邮编(固定长度)_PHP教程

时间:2021-07-01 10:21:17 帮助过:2人阅读

本函数的作 用判断是否为合法邮编(固定长度),方法很简单就是用正则来操作。
代码如下


< ?php

// 函数名:CheckPost($C_post)

// 作 用:判断是否为合法邮编(固定长度)

// 参 数:$C_post(待check的邮政编码)

// 返回值:布尔值

// 备 注:无

//-----------------------------------------------------------------------------------

function CheckPost($C_post)

{

$C_post=trim($C_post);

if (strlen($C_post) == 6)

{

if(!ereg("^[+]?[_0-9]*$",$C_post))

{

return true;;

}else

{

return false;

}

}else

{

return false;;

}

}

?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/631297.htmlTechArticle本函数的作 用判断是否为合法邮编(固定长度),方法很简单就是用正则来操作。 代码如下 ?php // 函数名:CheckPost($C_post) // 作 用...

人气教程排行