簡單爬蟲用PHP的正規表達式方法

使用PHP的function,preg_match_all()

<?php
$data = file_get_contents("http://shopping.friday.tw/");
$out = array();
preg_match_all("/<div>(.*)<\/div>/s",$data,$out);
var_dump($out);
?>

可以參考其他的做法:連結

Previous
Next Post »