有没有一个函数可以让我不受约束地打开一个文件写入其中,然后关闭它。我正在搜索一个类似的功能
bool thefunction(string line, string path, string mode);
行是我想在路径中的文件中写入的内容,可以从文档末尾开始,也可以在开始时擦除用模式参数定义的所有内容。好吧,这听起来有点挑剔,但这就是主意。我想进行计数,需要一个文件来增加其中的值。
查看file_put_contents()
。如果您需要与file_put_contents()
创建的权限不同的权限,则仍然需要chmod()
文件。
示例:
// 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 filen", FILE_APPEND);