欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php检测网址地址与http地址格式是否有效的代码

程序员文章站 2024-01-10 22:17:40
...
  1. /**
  2. desc:检网络地址格式是否有效
  3. link:bbs.it-home.org
  4. date:2013/2/24
  5. */
  6. function checkUrl($weburl)
  7. {
  8. return !ereg("^http(s)*://[_a-zA-Z0-9-]+(.[_a-zA-Z0-9-]+)*$", $weburl);
  9. } ?>
复制代码

2、判断http 地址是否有效

  1. /**

  2. desc:检测http 地址是否有效
  3. link:bbs.it-home.org
  4. date:2013/2/24
  5. */
  6. function url_exists($url)
  7. {
  8. $ch = curl_init();
  9. curl_setopt($ch, CURLOPT_URL,$url);
  10. curl_setopt($ch, CURLOPT_NOBODY, 1); // 不下载
  11. curl_setopt($ch, CURLOPT_FAILONERROR, 1);
  12. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  13. return (curl_exec($ch)!==false) ? true : false;
  14. }
  15. //方法2

  16. function img_exists($url)
  17. {
  18. return file_get_contents($url,0,null,0,1) ? true : false;
  19. }
  20. //方法3:

  21. function url_exists($url)
  22. {
  23. $head = @get_headers($url);
  24. return is_array($head) ? true : false;
  25. } ?>
复制代码

调用示例:

  1. $url='http://bbs.it-home.org';
  2. echo url_exists($url);
  3. ?>
复制代码