$file = fopen("test.txt", "r"); //读入
$file_w=fopen('output.txt', 'w');//写入
while(! feof($file))
{
$a = str_replace(' ', '',trim(fgets($file))."\n");
fwrite($file_w ,$a);
}
fclose($file);
fclose($file_w);
若是要写入同档案 就必须先把内容读完在写入 不然没办法
顺序要改成下面这样
$file = fopen("test.txt", "r");
while(! feof($file))
{
$a .= str_replace(' ', '',trim(fgets($file))."\n");
}
fclose($file);
$file_w=fopen('test.txt', 'w');
fwrite($file_w ,$a);
fclose($file_w);