在我查看了这里的问题之后,我看到我需要write_file来写入.txt文件。我还在谷歌上寻找了一个关于它的教程或示例,但找不到一个简单的。
你能解释一下我如何在Codeigniter中写一些.txt文件吗?
例如,用户在注册表单上提交文本,然后用户编写的文本将显示在users.txt中。
答案 0 :(得分:5)
来自文档:
$this->load->helper('file');
$data = 'Some file data';
if ( ! write_file('./path/to/file.php', $data))
{
echo 'Unable to write the file';
}
else
{
echo 'File written!';
}
答案 1 :(得分:3)
在file_helper.php
中名为system/helpers
的codeIgniter中有一个文件助手,可以帮助您实现这一目标:
$this->load->helper('file');
$data = 'My Text here';
if ( !write_file('./path/to/file.txt', $data)){
echo 'Unable to write the file';
}
关于file_helper
的完整文档是here。