我有一个具有 textarea 表单的 html 页面,当用户键入该 textarea 并按下提交时,php 将该 textarea 的内容写入 txt 文件。
当我在 textarea 中插入这样的内容时
line1 what's up
line2
line3
它最终像这样写入txt文件
line1 what\'s up
line2
line3
带有额外的空格和额外的斜线。我怎样才能解决这个问题?这是php
$myFile = "all.txt";
$fh = fopen($myFile, 'a') or die("can't open file");
$stringData = $content."\n";
fwrite($fh, $stringData);
fclose($fh);