我在网络应用程序中使用了一个wysiwyg编辑器.这是FCKeditor.为了编辑文件,除了加载javascript之外,我编辑该文件的Web表单如下所示:
<textarea><?php include('myWebDoc.html') ?></textarea>
我也试过这个:
<textarea><?php file_get_contents('myWebDoc.html') ?></textarea>
两种尝试最终都会在进入编辑器之前解析Web文档中的php.
是否有更好的PHP函数或方法来获取文件的内容到textarea标签而不解析?
解决方法:
尝试使用readfile而不是file_get_contents.
http://www.php.net/manual/en/function.readfile.php