码迷,mamicode.com
首页 > Web开发 > 详细

php 验证url

时间:2014-08-27 18:26:18      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   文件   div   cti   html   log   amp   

function isUrl($s)  
{  
    return preg_match(‘/^http[s]?:\/\/‘.  
        ‘(([0-9]{1,3}\.){3}[0-9]{1,3}‘. // IP形式的URL- 199.194.52.184  
        ‘|‘. // 允许IP和DOMAIN(域名)  
        ‘([0-9a-z_!~*\‘()-]+\.)*‘. // 三级域验证- www.  
        ‘([0-9a-z][0-9a-z-]{0,61})?[0-9a-z]\.‘. // 二级域验证  
        ‘[a-z]{2,6})‘.  // 顶级域验证.com or .museum  
        ‘(:[0-9]{1,4})?‘.  // 端口- :80  
        ‘((\/\?)|‘.  // 如果含有文件对文件部分进行校验  
        ‘(\/[0-9a-zA-Z_!~\*\‘\(\)\.;\?:@&=\+\$,%#-\/]*)?)$/‘,  
        $s) == 1;  
}

  原网址 :http://www.2cto.com/kf/201310/249265.html

php 验证url

标签:blog   http   io   文件   div   cti   html   log   amp   

原文地址:http://www.cnblogs.com/jiutong/p/3939989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!