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

PHP 获取网页文件大小实例代码

程序员文章站 2022-05-29 16:27:18
...

  1. $host="www.ite5e.com";
  2. $fp = fsockopen("$host", 80, $errno, $errstr, 30);
  3. if (!$fp) {
  4. echo "$errstr ($errno)
    ";
  5. } else {
  6. $out = "GET / HTTP/1.1 ";
  7. $out .= "Host: $host ";
  8. $out .= "Connection: Close ";
  9. }
  10. fwrite($fp, $out);
  11. $i=0;
  12. while($i
  13. {
  14. $i ;
  15. $con.=fread($fp,500);
  16. }
  17. //
  18. echo $con;
  19. //定义取出的字节数
  20. preg_match("/Content-Length:.?(d )/", $con, $matches);
  21. $size = $matches[1];
  22. echo $size;
  23. ?>