我在mysql中有一个表,其中包含一个url列表和一个名为html_code的空字段。
friend Logger& operator<<(Logger& os, const std::string& msg);
实施例。网址http://www.website.com/article1.html
我需要从url获取源代码html并将其放入我的空白字段
有可能吗? (使用php?)
答案 0 :(得分:1)
您可以使用file_get_contents(url)
,为您下载页面并设置string
:
$html = file_get_contents(url);
然后你可以将html插入你的mysql DB
参考:http://php.net/manual/en/function.file-get-contents.php
注意:确保您的PHP配置允许您远程下载:allow_url_fopen