就是我要去抓博客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);