我如何从url获取Html源代码并使用php放入mysql?

时间:2016-05-17 02:10:00

标签: php mysql curl wget

我在mysql中有一个表,其中包含一个url列表和一个名为html_code的空字段。

friend Logger& operator<<(Logger& os, const std::string& msg);

实施例。网址http://www.website.com/article1.html

我需要从url获取源代码html并将其放入我的空白字段

有可能吗? (使用php?)

1 个答案:

答案 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

参考:http://php.net/manual/en/filesystem.configuration.php