附上我的原始程式好了
$url = "http://search.books.com.tw/exep/openfind.php?key=9789861752068";
$text = iconv("big5", "utf-8",file_get_contents($url));
preg_match('/<a rel=\"mid_name\" href=\"[^\"]*\" \
title=\"([^\"]*)\"[^\>]*\>/', $text, $match);
print_r($match);
結果
Array ( [0] => Array ( )
[1] => Array ( )
)
我不懂的是為什麼我抓到的都會是陣列呢 ~"~