誰かが私を助けることができますか..私はLateRooms.comからホテルのレビューをこすり取ろうとしています私はすでにアフィリエイトとして許可を持っているのでそれは悪い考えを教えてはいけません
私のコード:
<?php
header('content-type: text/plain');
$contents = file_get_contents('http://www.laterooms.com/en/hotel-reviews/238902_the-westfield-bb-sandown.aspx');
$contents = preg_replace('/\s(1,)/', ' ', $contents);
print $contents . "\n";
$records = preg_split('/<div id="review/', $contents);
for ($ix = 1; $ix < count($records); $ix++) {
$tmp = $records[$ix];
preg_match('/id="review"/', $tmp, $match_reviews);
print_r($match_reviews);
exit();
}
?>
これは本当にうまく機能します。唯一の問題は、コードのページ全体を取得し、divid'review'と一致しないことです。
前もって感謝します