gamebook
[mirrors/Programs.git] / misc / gbook_offline / adv_rip / advrip.php
1 <?php
2
3 $adv = "";
4 $fp = fopen("$adv.txt", "w+");
5 $pos = "0";
6
7 while( strpos($line, "File not found") == 0 ) {
8 $line = trim( implode(" ", file("http://irc.honemsetodouc.com/koucka/adventure/$adv/$pos.txt")) );
9 //$line = $str_replace("", "", $line);
10 fwrite($fp, $line."\r\n");
11 echo ($line."\r\n");
12 $pos++;
13 }
14
15 fclose($fp);
This page took 0.246665 seconds and 4 git commands to generate.