コードをコピーします コードは次のとおりです:
/* 著者: Yang Yu
//http://vip.book.sina.com.cn/
//電子書籍パラメータ
$array_book[0] = 38884; //小説ID
$array_book[1] = 22172; //章開始ID
$array_book[2] = 32533; //章終了ID
$array_book [3] = '中国特殊部隊生存記:ランヤ' //小説名
//マッチングパラメータ
$title_pre = "/; (.*?)
$contents_pre = "/
//電子書籍を生成
for( $i = $array_book[1]; $i $url = "http://vip.book.sina.com.cn/book/chapter_{$array_book[0]}_{$i}.html";
$html = file_get_contents($url);
preg_match_all($title_pre,$html ,$title);
preg_match_all($contents_pre,$html,$contents);
$fh = fopen($array_book[3].'.txt',' a ');
$write_contents = $title[1][0]."rn".str_replace('
',' ',$) content[1][0]));
if(fwrite($fh,$write_contents) ){
echo '.$i.' が取得されました<
}
fclose ($fh)
}
;