我试图将特定div
的外部网页加载到div
我的网站的特定中,所以我使用preg_match
函数来获取部分代码。但我认为我写错了模式。这是我的代码:
<?php
include("simple_html_dom.php");
$html = new simple_html_dom();
$url = "http://something.com/";
$page_all = file_get_contents($url);
preg_match('#<table id="table1"><table id="table1"><table id="table2">(.*)</table></table></table>#ms', $page_all, $div_array);
echo ($div_array[0]);
?>
我想在http://somthing.comtable
中获取第二个的内容,
然后它没有任何结果。id=table2