我已经通过 php 文件系统创建了新的 .php 文件,现在我正在尝试将 html 代码写入文件。这是代码
$file = 'django unchained.php';
if($handle = fopen($file , 'a'))
{
$text = htmlentities("<a href=\"index.php\">Just link</a>");
echo $text; // here it shows up fine in webpage.
file_put_contents($file , $text); // after writing to file it doesnot appear the same in .php file
fclose($handle);
}
正如上面评论中提到的,当我在网页中回显它时,它显示得很好,但在将相同的字符串写入文件时看起来不一样。
提前致谢。