一文带你掌握PHP中常见的文件操作

一、文件读取的5种方法

1、file_get_contents: 将整个文件读入一个字符串

file_get_contents(
string $filename,
bool $use_include_path = false,
?resource $context = null,
int $offset = 0,
?int $length = null
): string|false

可以读取本地的文件

也可以用来打开一个网络地址实现简单的网页抓取

可以模拟post请求(stream_context_create)

$fileName = 'test.txt';
if (file_exists($fileName)) {
    $str = file_get_contents($fileName);
    echo $str;
} else {
    print_r("文件不存在");
}

2、file: 把整个文件读入一个数组中

file(string $filename, int $flags = 0, ?resource $context = null): array|false

数组的每个元素对应于文件中的一行

可以读取本地的文件

也可以用来读取一个网络文件

$lines = file('test.txt'); 
foreach ($lines as $line_num => $line) {
    echo "Line #<b>{$line_num}</b> : " . htmlspecialchars($line) . "<br />\n";
}

3、file_open、file_gets、file_read、fclose: 从文件指针资源读取

3.1 fgets — 从文件指针中读取一行

fgets(resource $stream, ?int $length = null): string|false

从文件中读取一行并返回长度最多为 length – 1 字节的字符串。碰到换行符(包括在返回值中)、EOF 或者已经读取了 length – 1 字节后停止(看先碰到那一种情况)。如果没有指定 length,则默认为 1K,或者说 1024 字节。

$fp = fopen("test.txt", "r");
if ($fp) {
    while (!feof($fp)) {
        $line = fgets($fp);
        echo $line . "<br />\n";
    }
    fclose($fp);
}

3.2 fread — 从文件指针中读取固定长度(可安全用于二进制文件)

fread(resource $stream, int $length): string|false

$fp = fopen("test.txt", "r");
if ($fp) {
    $content = "";
    while (!feof($fp)) {
        $content .= fread($fp, 1024);
    }
    #$contents = fread($handle, filesize($filename));
    echo $content;
    fclose($fp);
}

4、SplFileObject 类

https://www.php.net/manual/zh/class.splfileobject.php

5、调用linux命令

处理超大文件,比如日志文件时,可以用fseek函数定位,也可以调用linux命令处理

$file = 'access.log';
$file = escapeshellarg($file); // 对命令行参数进行安全转义
$line = `tail -n 1 $file`;
echo $line;

二、文件写入

1、file_put_contents: 将数据写入文件

file_put_contents(
string $filename,
mixed $data,
int $flags = 0,
?resource $context = null
): int|false

$content = "Hello, world!"; // 要写入文件的内容
$file = "test.txt"; // 文件路径

file_put_contents($file, $content);

2、fwrite: 写入文件(可安全用于二进制文件)

fwrite(resource $stream, string $data, ?int $length = null): int|false

$content = "这是要写入文件的内容";
$file = fopen("test.txt", "w"); // 打开文件写入模式
if ($file) {
    fwrite($file, $content); // 将内容写入文件
    fclose($file); // 关闭文件
}

3、SplFileObject 类

三、文件复制、删除、重命名

1、copy: 拷贝文件

copy(string $from, string $to, ?resource $context = null): bool

$file = 'test.txt';
$newFile = 'test2.txt';

if (!copy($file, $newFile)) {
    echo "failed to copy $file...\n";
}

2、unlink: 删除文件

unlink(string $filename, ?resource $context = null): bool

$fileName = 'test2.txt';
if (file_exists($fileName)) {
   if (unlink($fileName)) {
       echo '删除成功';
   }
}

3、rename: 重命名文件

rename(string $from, string $to, ?resource $context = null): bool

可以在不同目录间移动

如果重命名文件时 to 已经存在,将会覆盖掉它

如果重命名文件夹时 to 已经存在,本函数将导致一个警告

$fileName = 'test.txt';
$rename = 'test_new.txt';
if (file_exists($fileName)) {
   if (rename($fileName, $rename )) {
       echo '重命名成功';
   }
}

到此这篇关于一文带你掌握PHP中常见的文件操作的文章就介绍到这了,更多相关PHP文件操作内容请搜索恩蓝小号以前的文章或继续浏览下面的相关文章希望大家以后多多支持恩蓝小号!

原创文章,作者:WFKCV,如若转载,请注明出处:http://www.wangzhanshi.com/n/573.html

(0)
WFKCV的头像WFKCV
上一篇 2024年12月17日 17:53:01
下一篇 2024年12月17日 17:53:03

相关推荐

  • centos7更新php5.4到php5.6/php7

    centos7系统yum安装的php版本为5.4。 因业务需求,开发可能需要php5.6环境。 本文应需而生,介绍从php5.4升级到php5.6。 如需更新到php7环境,步骤一…

    php 2025年1月1日
  • 怎么在PHP7项目中使用curl实现一个图片上传功能

    php5.5之前 $curl = curl_init(); if (defined('CURLOPT_SAFE_UPLOAD'))…

    php 2025年1月1日
  • 如何在CentOS中安装PHP7

    CentOS上的PHP版本都十分古老,满足不了一些框架对PHP版本的要求。于是,出现了许多第三方软件库,如EPEL、RPM Fusion、Remi等,这些库提供了新版的PHP。让我…

    php 2025年1月1日
  • PHP版本怎么迁移到PHP7

    代码如下: yum install git git clone https://github.com/php/php-src.git  然后编译配置参数,如下: &nbs…

    2025年1月1日
  • php使用swoole实现TCP服务

    这里以在Yii框架下示例 一:swoole配置TCP ‘swoole’ => [ // 日志文件路径 ‘log_file’ => ‘@console/log/swool…

    php 2024年12月17日
  • PHP7添加非空合并语法糖

    我们知道从 PHP 5.3 起三元运算符 ? : 有一个写法简洁写法是这样的: <?php $a = 0; $b = $a ?: 1; # $b === 1 这实际上相当于:…

    php 2025年1月1日
  • php7增加了哪些新特性

    1.类型的声明。 可以使用字符串(string), 整数 (int), 浮点数 (float), 以及布尔值 (bool),来声明函数的参数类型与函数返回值。 declare(st…

    php 2025年1月1日
  • PHP7带来了哪些好处

    本文是一篇讲座听后+后续研究的总结。 话说当年追时髦,php7一出就给电脑立马装上了,php5和php7共存,也是立马写了个超级耗时间的循环脚本测了一番,确实php7给力很多,然后…

    2025年1月1日
  • PHP实现异步请求的四种方法

    PHP中的cURL可用于发起 HTTP 请求,通常同步地等待服务器响应。如果你想要实现异步操作,即 PHP 程序继续执行而无需等待 cURL 请求完成,你可以考虑以下几种方式: 使…

    php 2024年12月17日
  • php7如何开启错误提示

    php7开启错误提示的方法:1、修改php.ini文件并开启错误提醒;2、修改httpd.conf文件,在末行添加设置为“php_flag display_errors on”;3…

    2025年1月1日

发表回复

登录后才能评论