Copy the code The code is as follows:
$url="http://www.golden-book.com/booksinfo/12/264.html";
$lines_array = file($ url);
$lines_string = implode('',$lines_array);
iconv("gb2312", "utf-8",$lines_string);
// echo "dsafasdfasf".$lines_string;
eregi("< span class="style15">[^>]*",$lines_string,$head);
echo "asdfsfasdfa".$head[0];
?>
The above introduces the implementation code of BookNet PHP to obtain book titles from JinshuNet, including the content of BookNet. I hope it will be helpful to friends who are interested in PHP tutorials.