我有这个简单的代码:
$theBody = wp_remote_retrieve_body( wp_remote_get('http://www.wordpress.org') );
print_r( $theBody );
die();
它正在工作,但它不仅仅是回显源代码,而是像在 iframe 中一样显示页面。
我想我需要告诉我的脚本我需要将其显示为代码而不是生成页面。
怎么做?
我有这个简单的代码:
$theBody = wp_remote_retrieve_body( wp_remote_get('http://www.wordpress.org') );
print_r( $theBody );
die();
它正在工作,但它不仅仅是回显源代码,而是像在 iframe 中一样显示页面。
我想我需要告诉我的脚本我需要将其显示为代码而不是生成页面。
怎么做?
如果您想获取网站的任何源代码,那么您可以查看PHP Simple HTML DOM Parser,它在这种情况下非常容易使用。例子:
include('parsar.php'); // you will get from that website
$html = file_get_html('http://www.google.com/');
echo $html;