php文件操作实例代码


以下是一个简单的PHP文件操作实例代码,展示了如何读取、写入和追加内容到文件中。请注意,这里使用的是基本的文件操作函数,如`fopen()`, `fread()`, `fwrite()`, 和 `fclose()`。

### 读取文件内容


<?php
// 打开文件
$file = fopen("example.txt", "r") or die("Unable to open file!");

// 检查文件是否成功打开
if ($file) {
    // 读取文件内容
    echo fread($file, filesize("example.txt"));
    // 关闭文件
    fclose($file);
}
?>

### 写入文件内容


<?php
// 打开文件准备写入,如果文件不存在则创建
$file = fopen("example.txt", "w") or die("Unable to open file!");

// 写入内容到文件
$txt = "Hello, world!\n";
fwrite($file, $txt);

// 关闭文件
fclose($file);
?>

### 追加内容到文件


<?php
// 打开文件准备追加内容
$file = fopen("example.txt", "a") or die("Unable to open file!");

// 追加内容到文件
$txt = "This is a new line.\n";
fwrite($file, $txt);

// 关闭文件
fclose($file);
?>

这些示例展示了PHP中基本的文件操作。请确保你有足够的权限来读取、写入或创建指定的文件。同时,注意`fopen()`函数的第二个参数,它决定了文件打开的模式(如只读`"r"`、只写`"w"`、追加`"a"`等)。