Heim > Artikel > Backend-Entwicklung > php file_put_contents()函数
Definition and Usage 定义和用法
|
Parameter 参数 |
Description 描述 |
---|---|
file | Required. Specifies the file to write to. If the file does not exist, this function will create one 必要参数。指定写入文件对象。如果该文件不存在,函数将自动创建该文件 |
data | Required. The data to write to the file. Can be a string, an array or a data stream 必要参数。指定写入文件的数据,可以使一个字符串或者是一个数组 |
mode | Optional. Specifies how to open/write to the file. Possible values: 可选参数。指定打开/书写文件的方法:
|
context | Optional. Specifies the context of the file handle. Context is a set of options that can modify the behavior of a stream. 可选参数。指定需要进行处理的文件context[内容]。Context是一组选项,你可以通过它修改你的文本属性 |