「B-small-practice.in」という名前のファイルがあり、その内容は次のとおりです
this is a test
foobar
all your base
class
pony along
私はコードを書きました。その機能は、各行の単語を逆にして別のファイル "output.txt" に書き込むことです。
コードは次のとおりです。
$file = fopen("B-small-practice.in", "r");
$lines = array();
while(!feof($file)){
$lines[] = fgets($file);
}
fclose($file);
$output = fopen("output.txt", "a");
foreach($lines as $v){
$line = explode(" ", $v);
$reversed = array_reverse($line);
$reversed = implode(" ", $reversed);
fwrite($output, $reversed."\n");
}
fclose($output);
?>
コードの予想される出力は、次のように「output.txt」に書き込まれます。
test a is this
foobar
base your all
class
along pony
しかし、これは私が得るものです:
test
a is this
foobar
base
your all
class
along
pony
何がそのように見えるのですか?