Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的 PHP 脚本,需要解析另一个网页的内容。将 HTML 代码放入 PHP 变量的最简单方法是什么?
在您的 php 脚本中:
$html = file_get_contents('http://yourUrl.com'); echo $html;
如果您需要更高级的功能,例如模拟标头/Cookie,请查看 - cURL。
cURL