就是我要去抓博客x的書籍資料
假如我要抓他的作者那一欄
可是我的過濾條件裡有中文字 要怎麼弄阿 ~"~
因為是特定的中文字 一直搞不懂
ex: 差點忘記是PHP
$url = "http://www.books.com.tw/exep/prod/booksfile.php?item=0010469473";
$text = iconv("big5", "utf-8",file_get_contents($url));
//網站原始碼
//<li>作者:<a href="http://search.books.cof=author">艾倫.蘭格</a></li>
preg_match('/作者:<a.*>(.*)<\/a>/i', $text, $match);