将包含双引号数据的输入文本字段保存到文本文件中

时间:2014-02-22 19:15:41

标签: php double-quotes

我有2个输入字段nameheight。当我提交它时,我想将其保存到文本文件中。

$name = $_POST['name'];     // Michel
$height = $_POST['height']; // 5'4"    

$text = $name."\n".$height;
file_put_contents('test.txt', $text);

当我保存它时,高度会有反斜杠。我使用以下方法删除它们:

 $text = $name."\n".stripslashes($height);
 $text = $name."\n".strislashes($height);

但我不太确定这是否是正确的方法。有没有更好的方法来完成同样的事情?

0 个答案:

没有答案