0

我在输入带有反斜杠的文本时遇到问题。这是由于从以前的表单中获得了 POST 消息(消息)。有没有办法解决这个问题?我的魔术引号已启用。

<?php
$filename = 'test.txt';
$somecontent = $_POST['message'];

// Let's make sure the file exists and is writable first.
if (is_writable($filename)) {

    // In our example we're opening $filename in append mode.
    // The file pointer is at the bottom of the file hence
    // that's where $somecontent will go when we fwrite() it.
    if (!$handle = fopen($filename, 'w')) {
         echo "Cannot open file ($filename)";
         exit;
    }

    // Write $somecontent to our opened file.
    if (fwrite($handle, $somecontent) === FALSE) {
        echo "Cannot write to file ($filename)";
        exit;
    }

    echo "Success, wrote ($somecontent) to file ($filename)";

    fclose($handle);

} else {
    echo "The file $filename is not writable";
}
?> 

结果:

Message= Jo\hn, POST result : Jo\\hn. Output: Jo\hn

预期的:

Message = Jo\hn, POST result : Jo\\hn, Output : Jo\\hn

输出必须与 POST Result 相同,而不是原始消息本身。

4

0 回答 0