file_put_contents()函数需要哪些参数?(php)

2025-01-04 10:53:31
推荐回答(4个)
回答1:

int file_put_contents ( string filename, string data [, int flags [, resource context]] )
filename:要写入数据的文件名
data:要写入的数据。类型可以是 string,array(但不能为多维数组),或者是 stream 资源
flags:可选,规定如何打开/写入文件。可能的值:
FILE_USE_INCLUDE_PATH:检查 filename 副本的内置路径
FILE_APPEND:在文件末尾以追加的方式写入数据
LOCK_EX:对文件上锁
context:可选,Context是一组选项,可以通过它修改文本属性

file_put_contents("test.txt", "This is another something.", FILE_APPEND);

回答2:

int file_put_contents ( string $filename , mixed $data [, int $flags = 0 [, resource $context ]] )
前两个是文件名和数据,后两个是标记和上下文资源,前两个必填,后两个选填

回答3:

file_put_contents()函数需要哪些参数?(php)
锣饮话驶同暖商搏校甚

回答4:

http://www.w3school.com.cn/php/func_filesystem_file_put_contents.asp
看看这个,很详细