file()

file()函数的作用是:把整个文件读入一个数组中。

每个数组元素都包含了文件中的一行,并在末尾加上了换行符。

 

语法:

file(path,include_path,context)

 

 



Parameter参数 Description描述
path Required. Specifies the file to read
必要参数。指定文件对象
include_path Optional. Set this parameter to '1' if you want to search for the file in the include_path (in php.ini) as well
可选参数。如果你希望在include_path (in php.ini)中查找文件的话,你可以把该参数设置为“1”
context Optional. Specifies the context of the file handle. Context is a set of options that can modify the behavior of a stream. Can be skipped by using NULL.
可选参数。指定需要进行处理的文件context[内容]。Context是一组选项,你可以通过它修改你的文本属性;你也可以使用NULL[空]来忽略某段内容

 



Parameter参数 Description描述
path Required. Specifies the file to read
必要参数。指定文件对象
include_path Optional. Set this parameter to '1' if you want to search for the file in the include_path (in php.ini) as well
可选参数。如果你希望在include_path (in php.ini)中查找文件的话,你可以把该参数设置为“1”
context Optional. Specifies the context of the file handle. Context is a set of options that can modify the behavior of a stream. Can be skipped by using NULL.
可选参数。指定需要进行处理的文件context[内容]。Context是一组选项,你可以通过它修改你的文本属性;你也可以使用NULL[空]来忽略某段内容

 

你可能感兴趣的:(PHP)