<?php
$list = file_get_contents('sitelist.txt');
$explode = explode("http://", $list);
$i = 1;
for ($i = 1; $i < count($explode); $i++) {
$filename = 'tost.txt';
$fp = fopen($filename, "a+");
$write = fputs($fp, $explode[$i] . "\n");
fclose($fp);
}
echo "ok";
?>
tost.txt に何かを書いたり入れたりしているわけではありません。ここで何が問題なのですか?