Home  >  Q&A  >  body text

如何读取一个网页的HTML内容?

这是啥这是啥2798 days ago1180

reply all(3)I'll reply

  • 钟毅

    钟毅2017-10-04 17:28:27

    If you just want to read the HTML content, just use the CURL command. This can directly return the HTML page status. LINUX commands can also directly download the file source code.

    reply
    0
  • 数据分析师

    数据分析师2017-10-01 00:52:32

    How to read the HTML content of a web page? -PHP Chinese website Q&A-How to read the HTML content of a web page? -PHP Chinese website Q&A

    Let’s take a look and learn.

    reply
    0
  • 怪我咯

    怪我咯2017-03-15 17:45:17

    HP中文件的概念和Java中文件流的概念是类似的,许多文件读取的函数,其接受的输入流不仅仅是本地文件系统,也可以是网络文件,下面介绍其中的一种方式: 

    function getRssContent($url){ 
    $handle = fopen ($url, "rb"); 
    $contents = ""; 
    $count=0; 
    do { 
    $data = fread($handle, 1000000); 
    $count++; 
    if (strlen($data) == 0) { 
    break; 
    } 
    $contents .= $data; 
    } while(true); 
    fclose ($handle); 
    return $contents; 
    }


    reply
    0
  • Cancelreply