VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php中判断是否为合法邮编,固定长度

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

  1. < ?php 
  2. // 函数名:CheckPost($C_post) 
  3. // 作 用:判断是否为合法邮编(固定长度) 
  4. // 参 数:$C_post(待check的邮政编码) 
  5. // 返回值:布尔值 
  6. // 备 注:无 
  7. //----------------------------------------------------------------------------------- 
  8.   
  9.   
  10. function CheckPost($C_post
  11. $C_post=trim($C_post); 
  12. if (strlen($C_post) == 6) 
  13. if(!ereg("^[+]?[_0-9]*$",$C_post)) 
  14. return true;; 
  15. }else 
  16. return false; 
  17. }else 
  18. return false;; 
  19. ?> 
  20.  



出处:http://www.phpfensi.com/php/20140116/1367.html


相关教程