$id = $_GET['id'];
$myFile = "lidn.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = $id;
fwrite($fh, $stringData);
fclose($fh);
上面的代码工作正常。
但我想将每个数据保存在一个新行上。
感谢。
答案 0 :(得分:3)
只需在保存的字符串中添加换行符即可。
例如$stringData = $id . "\n";
。
答案 1 :(得分:3)
您需要添加"\n"
,如下所示: -
$id = $_GET['id'];
$myFile = "lidn.txt";
$fh = fopen($myFile, 'a') or die("can't open file");
$stringData = $id;
fwrite($fh, $stringData."\n");
fclose($fh);