explode()和implode()、file_get_contents() 和file()的区别
一、file_get_contents()和file()都是读文件1、file_get_contents(path,include_path,context,start,max_length)把整个文件读入一个字符串中参数说明注:本函数可用于二进制对象2、file(path,include_path,context)把文件读入一个数组中,数组中每个单元都是文件中相应的一行,包括换行符。参数列表注: