-
-
/**
- desc:检网络地址格式是否有效
- link:bbs.it-home.org
- date:2013/2/24
- */
- function checkUrl($weburl)
- {
- return !ereg("^http(s)*://[_a-zA-Z0-9-]+(.[_a-zA-Z0-9-]+)*$", $weburl);
- } ?>
-
复制代码
2、判断http 地址是否有效
-
-
/**
- desc:检测http 地址是否有效
- link:bbs.it-home.org
- date:2013/2/24
- */
- function url_exists($url)
- {
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL,$url);
- curl_setopt($ch, CURLOPT_NOBODY, 1); // 不下载
- curl_setopt($ch, CURLOPT_FAILONERROR, 1);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- return (curl_exec($ch)!==false) ? true : false;
- }
//方法2
- function img_exists($url)
- {
- return file_get_contents($url,0,null,0,1) ? true : false;
- }
//方法3:
- function url_exists($url)
- {
- $head = @get_headers($url);
- return is_array($head) ? true : false;
- } ?>
-
复制代码
调用示例:
-
-
$url='http://bbs.it-home.org';
- echo url_exists($url);
- ?>
复制代码
|