在 PHP 中写入文本文件时换行符不起作用
2022-08-30 14:42:50
我有以下测试脚本:
<?php
$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "Floppy Jalopy\n";
fwrite($fh, $stringData);
$stringData = "Pointy Pinto\n";
fwrite($fh, $stringData);
fclose($fh);
?>
但是,当运行并打开usign记事本时,数据在一行中返回,没有换行符,如下所示:
软盘Jalopy(疯狂的盒子)尖尖的平托(疯狂的盒子)
我找不到“疯狂盒子”的合适字符,但这是一个非常疯狂的盒子。什么给!