すべてのリンクが正しくないことを除けば、正常に機能している別のサイトからコンテンツを取得しようとしています。
include_once('../simple_html_dom.php');
$page = file_get_html('http://www.website.com');
$ret = $page->find('div[id=header]');
echo $ret[0];
とにかく、完全なリンクを持つためにリンクを表示するすべてのリンクの代わりにありますか?pregreplaceを使用します。
$ret[0] = preg_replace('@(http://([\w-.]+)+(:\d+)?(/([\w/_.]*(\?\S+)?)?)?)@',
'<a href="$1">http://fullwebsitellink.com$1</a>', $ret[0]);
上記のようなものになると思いますが、わかりませんか?
ありがとう