是否有一个函数,我不限制打开文件写入然后关闭它。我正在寻找一个看起来像这样的功能
bool thefunction(string line, string path, string mode);
行是我想要在路径的文件中写入的内容,或者从文档的末尾开始,或者在开始时删除使用模式参数。 好吧这听起来有点挑剔,但这是主意。我想进行计数,需要一个文件来增加它的值。
答案 0 :(得分:4)
查看file_put_contents()
。如果您需要与chmod()
创建的权限不同的权限,则仍需要file_put_contents()
该文件。
示例:
// This writes a line to a file, appending to what's already there
$success = file_put_contents("/path/to/file.txt", "This string goes into the file\n", FILE_APPEND);