PHP - 将html写入文本文件

时间:2015-03-29 12:26:50

标签: php html

我遇到了这个问题: 我想使用PHP脚本将iframe标记写入文本文件。 写作脚本:

    <?php
    // Open the text file
    $f = fopen("text.txt", "a");
    // Write text
    fwrite($f, $_POST["textblock"] . "\n");
    // Close the text file
    fclose($f);
    // Redirect
    header("Location: http://umaster.tk/admin/index.php");
    //Error
    die();
    ?>

阅读脚本:

    <?php
    $myfile = fopen("szoveg.txt", "r") or die("Unable to open file!");
    while(!feof($myfile)) {
    echo fgets($myfile);
    }
    fclose($myfile);
    ?>

iframe:

   <iframe width="560" height="315" src="https://www.youtube.com/embed/asNzJ2mFCm0" frameborder="0" allowfullscreen>
   </iframe>

php脚本写的是什么:

    <iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/asNzJ2mFCm0\" frameborder=\"0\" allowfullscreen></iframe        

如何摆脱这些反斜杠?

1 个答案:

答案 0 :(得分:1)

PHP有一个名为stripslashes

的内置函数

http://php.net/manual/en/function.stripslashes.php