PHP文件操作有多种姿势,以下是一些常见的操作方法:
打开文件:
$file = fopen("example.txt", "r"); // 以只读方式打开文件
$file = fopen("example.txt", "w"); // 以写入方式打开文件
$file = fopen("example.txt", "a"); // 以追加方式打开文件
读取文件内容:
$file = fopen("example.txt", "r");
if($file){
while(!feof($file)){
echo fgets($file). "<br>"; // 逐行读取文件内容
}
fclose($file);
}
写入文件内容:
$file = fopen("example.txt", "w");
if($file){
fwrite($file, "Hello, World!"); // 写入内容到文件
fclose($file);
}
关闭文件:
$file = fopen("example.txt", "r");
fclose($file); // 关闭文件
删除文件:
unlink("example.txt"); // 删除文件
检查文件是否存在:
if(file_exists("example.txt")){
echo "文件存在";
}else{
echo "文件不存在";
}
获取文件大小:
$fileSize = filesize("example.txt"); // 获取文件大小,单位为字节
复制文件:
copy("example.txt", "example_copy.txt"); // 复制文件
移动文件:
rename("example.txt", "new_folder/example.txt"); // 移动文件到新的位置
这些是一些常见的PHP文件操作方法,可以根据具体需求选择适合的方法。
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站