我基本上想要做的正是這樣的事情:Simple Html DOM Caching刮從不同的URL多的數據與simple_html_dom.php
我得到的一切工作至今,但現在我得到以下錯誤,因爲我湊許多網站(6此刻,我想最多25個站點):
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 39 bytes)
我是一個PHP新手=/......所以,我怎麼能「連載」一步刮工藝步驟,我的記憶唐不放棄? :-)
代碼示例:
// Include the library
include('simple_html_dom.php');
// retrieve and find contents
$html0 = file_get_html('http://www.site.com/');
foreach($html0->find('#id') as $aktuelle_spiele);
file_put_contents("cache/cache0.html",$aktuelle_spiele);
非常感謝你提前爲您的幫助!
最多格蘭內存限制....看來你只有32 MB的內存限制 – Hackerman