1.文件操作
打开关闭文件
打开文件
$filePath = "text.txt";
$fh = fopen($filePath,"r")```
文件打开模式
|模式|可读|可写|文件指针|截断|创建|
|-----|-----|-----|-----|-----|-----|
|r|yes|no|start|no|no|
|r+|yes|yes|start|no|no|
|w|no|yes|start|yes|yes|
|w+|yes|yes|start|yes|yes|
|a|no|yes|end|no|yes|
|a+|yes|yes|end|no|yes|
关闭文件
`fclose($fh)`
###读取文件
> 1 . fread($fh,$filePath length);
从指定的资源读取length个字符,当达到EOF或读取到length字符是读取将停止.如果尧都区整个文件,使用filesize()函数确定应该读取的字符数
$file = "test.txt";$fh = fopen( $file, "r");
$str = fread($fh, filesize($file));echo $str;fclose($fh);
2 . string fgets ( int handle [, int length] )
fgets()函数从$fh指定的资源中读取一行字符,碰到换行符(包括在返回值中),EOF或者已经读取到length-1字节后停止
$handle = fopen("data.txt", "r");while(!feof($handle)){
$content = fgets($handle);$content= iconv('gbk','utf-8',$content);
echo $content."<br />”;}
fclose($handle);
如果没有指定length,则默认为1k,或者1024字节
3 . array file ( string $filename [, int $flags = 0 [, resource $context ]])
file()函数将文件读取到数组中,个元素由换行符分隔
$arr = file("test.txt");
print_r($arr);
4 .string file_get_contents ( string filename [, bool use_include_path [, resource
context [, int offset [, int maxlen]]]] )
file_get_contents()函数将文件内容读到字符串中
$str = file_get_content("test.txt");
echo $str;
##写入文件
1. fwrite();
int fwrite(resource handle,string);
fwrite(0函数将sreing的内容写入到由handle指定的 资源中,如果指定的length参数,将在写入length个字符时停止
fwrite()函数将内容写入一个打开的文件中。
fwrite($fh, "哈哈哈");
2 . file_put_contents();
int file_put_contents ( string filename, string data [, int flags [, resourcecontext]] )
file_put_contents()函数讲一个字符串写入文件,与依次调用
file_put_contents()函数把一个字符串写入文件中。
$strs = "lalalalalalalallalala";
file_put_contents($filePath,$strs);
##赋值,重命名,删除文件
1 . copy()
bool copy ( string source, string dest );
文件从cource拷贝到dest.如果成功则返回true,失败则返回false
`Copy("test.txt", "test.txt.bak");`
2. rename()
bool rename ( string oldname, string newname [, resource context] );
尝试吧oldname重命名为newname,如果成功返回true,失败返回false;
`rename("test.txt", “test2.txt”);`
3 . unlink()
bool unlink ( string filename );
删除文件,如果成功返回true,失败返回false
`unlink(“test.txt")`
###读取目录
1 . opendir()
resource opendir (string path [, resource context])
打开目录句柄
2 . closedir()
void closedir(resource dir_handle)
关闭目录句柄
3 . readdir();
string readdir(resource dir_handle)
返回有handle指定目录的各个元素.可以使用此函数列出给定目录中所有文件和子目录
$dh = opendir(".");
While($file = readdir($dh)){echo $file."<br />";
}closedir($dh);```
4 . scandir()
array scandir ( string directory [, int sorting_order [, resourcecontext]] )
返回一个包含有dirctory中的文件和目录的数组
5 . rmdir()
bool rmdir ( string dirname )
删除目录
6 . mkdir()
bool mkdir ( string pathname [, int mode [, bool recursive [, resourcecontext]]] )
尝试新建一个由pathname指定的目录;
其他文件操作函数
1 . filesize();
int filesize(string filename);
取得文件的大小,以字节为单位
2 . filectime()
int filectime (string filename)
取得文件的创建时间,以unix时间方式返回
$t = filectime("test.txt");
echo date("Y-m-d H:i:s", $t);```
3 . fileatime()返回文件的最后改变时间
4 . filemtime() 返回文件的最后修改时间
#注
##"最后改变时间"不同于"最后修改时间".最后改变时间指的是对文件inode数据的任何修改,包括改变权限.所属组,拥有者等.而最后修改时间指的是文件内容的修改
5 . file_exists()
检查文件是或者目录是否存在,如果存在返回true,否则返回false
6 . is_exists
判断文件是否可读,如果可读返回true,否则返回false
7 . is_writeable()
判断文件是否可写,如果可写返回true,否则返回false
##解析目录路径函数
1 . basename()
string basename ( string path [, string suffix] )
返回路径中文件名部分,当指定可可选参数cuffix会将这部分内容去掉
$path = "/home/www/data/users.txt";
$filename = basename($path);
$filename2 = basename($path, “.txt");```
2 . dirname()
string dirname ( string path )
返回路径中的目录部分
3 . pathinfo()
array pathinfo ( string path [, int options] )
返回一个关联数组,其中包括路径中的三个部分: 目录名,文件名,扩展名
$pathinfo = pathinfo($_SERVER["SCRIPT_FILENAME"]);
print_r($pathinfo);```
4 .chmod(0
修改文件目录权限
hmod()函数修改文件模式
chmod-Change file mode 如果成功返回true,否则false
#表单处理
GET所有表单输入的数据被加载到请求的URL地址后面,
GET方式提交数据只能传递文本,能够提交数据大小有限,安全性差
POST提交数据的方式是吧表单的数据打包放入http请求中
post能够提交更多的数据
#checkbox表单元素name设置为数组 如`likes[]`获取时`$e = $_POST['likes']`
表单提交的数据会自动封装成数组:
用$_GET/$_POST或者$_REQUEST获得表单提交的数据;
文件上传相关设置
1 . **表单设置**
>1 设定表单数据提交方式为post
2 设定enctype属性为 : multipart/form-data
3 为了避免用户登台太久之后发现上传文件太大可以再变淡添加MAX_FILE_SIZE 隐藏域,通过设置其balue值限制上传文件大小
2 . PHP设置
1.file_uploads
是否允许通过http上传文件,默认为ON
2.upload_max_filesize
允许文件大小最大值,默认2M,次指令必须小于
3.upload_tmp_dir
指定上传文件临时存放路径,这个目录对于此服务器进程的用户必须是可写的
4 .post_max_size;
控制POST方式提交数据php所能接受的最大数据量
5 .memory_limit
指定单个脚本程序可以使用的最大北村容量
6 . max_execution_time
此指令确定php脚本可以执行的最长时间,以秒为单位,默认是30s;
#$_FILES数组
php第三节.key
$_FILES超全局变量,作用是存储各种与上传文件有关的信息;
是二维数组,数组中共有五项
$_FILES["userfile"]["name"]上传文件的名称
$_FILES["userfile"]["type"]上传文件的类型
$_FILES["userfile"]["size"]上传文件的大小,以字节为单位
$_FILES["userfile"]["tmp_name"]文件上传后在服务器端储存的临时文件名
$_FILES["userfile"]["error"] 文件上传过程相关错误代码
注 : userfile只是一个占位符,代表文件上传表单元素的名称,因此这个值将根据你所给定的名称有所不同
###上传错误信息
$_FILES[‘userfile’][‘error’] 提供了在文件上传过程中出现的错误
1.UPLOAD_ERR_OK (value = 0) 如果文件上传成功返回0;
2.UPLOAD_ERR_INI_SIZE (value = 1) 如果试图上床的文件大小超出
upload_max_filesize最大值则返回1
3.UPLOAD_ERR_FORM_SIZE (value = 2)如果试图上床的文件大小超出
MAX_FILE_SIZE最大值则返回2
4 . UPLOAD_ERR_PARTIAL (value = 3)
如果文件没有完全上传 则返回3
5.UPLOAD_ERR_NO_FILE (value = 4)
如果用户没有指定上传文件就提交表单则返回4
##文件上传函数
1.is_uploaded_file()
bool is_uploaded_file ( string filename )
is_uploaded_file()函数确定参数filename指定的文件是否使用HTTP POST上传;
if(is_uploaded_file($_FILES[‘userfile’][‘tmp_name’])){
copy($_FILES[‘userfile’][‘tmp_name’], “test.txt”);
}else{
echo "文件上传失败";
}
2.move_uploaded_file()
bool move_uploaded_file ( string filename, string destination )
move_uploaded_file作用是将上传文件从临时目录转移到目标目录,随餐copy()也可以实现同样功能能,但是move_uploaded_file还提供了一种额外的功能,它将检查由filename输入参数指定的文件确实是通过http post上传机制上传的.如果所指定的文件并非上传文件,则移动失败,返回false
`move_uploaded_file($_FILES['userfile']['tmp_name'], "1/test.jpg");`