我是php的新手,我正试图从每个网页中提取内容。
<div id="page_content">
<p>Each page content</p>
</div>
我尝试在global.php下创建一个函数:
function page_content($page_content) {
$page_content = array('id' => 'page_content');
}
在layout.php下我有:
<?php echo $page_content; ?>
答案 0 :(得分:2)
试试这个(你的PHP服务器需要允许url fopen):
<?php
$html = file_get_contents('http://stackoverflow.com/questions/ask');
echo $html;
?>