妻が小説を読むためです いつも元のサイトがポップアップして、ポップアップして音が出ますが、どんな音ですか?
Chromeでブロックしたり、ホストを書き込んだりすることもできますが、変更しますthe site やり直すのは本当に面倒です。
- $base = 'http://xx/oo/';
- $start = 'xx.shtml';
- $content_grep = '/ (. *)
/';
- $next_grep = '/href='(d+.shtml)'>次のページ/';
-
- $next = $start;
- $file_name = ' out.txt';
-
- while($next) {
- echo '取得 ' . $next . PHP_EOL;
- $result = file_get_contents($base . $next);
-
- preg_match_all($content_grep, $result, $match ) ;
- $isTitle = true;
- $content = "";
- foreach($match[1] as $line) {
- if($isTitle) {
- $content = $line . PHP_EOL;
- $isTitle = false ;
- } else {
- $content .= ' . $line . PHP_EOL;
- }
- }
-
- $file = fopen($file_name, 'a');
- echo '書き込み長: ' content) .PHP_EOL;
- fwrite($file, $content);
- fclose($file);
-
- echo '.';
-
- preg_match($next_grep, $result, $match);
- $next = $match [ 1];
- }
-
コードをコピー
|