Home  >  Article  >  Backend Development  >  Php implementation code to obtain book title from Jinshu.com_PHP tutorial

Php implementation code to obtain book title from Jinshu.com_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:37:15879browse

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("[^>]*",$ lines_string,$head);
echo "asdfsfasdfa".$head[0];
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321973.htmlTechArticleCopy the code as follows: ?php $url="http://www.golden-book.com/booksinfo /12/264.html"; $lines_array = file($url); $lines_string = implode('',$lines_array); iconv("gb2312", "utf-8...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn