当使用PHP编程时,读取和写入文件是一项常见的任务。以下是一个简单的示例,展示如何使用PHP来读取和写入文件。
读取文件内容:
<?php
$filename = "example.txt";
// 打开文件
$file = fopen($filename, "r");
// 读取文件内容
if ($file) {
while (!feof($file)) {
echo fgets($file) . "<br>";
}
fclose($file);
} else {
echo "无法打开文件!";
}
?>
上面的代码先打开一个名为”example.txt”的文件,然后逐行读取文件内容并输出到网页上。
写入文件内容:
<?php
$filename = "example.txt";
$content = "这是要写入文件的内容。";
// 打开文件进行写入
$file = fopen($filename, "w");
// 写入内容
if ($file) {
fwrite($file, $content);
fclose($file);
echo "文件写入成功!";
} else {
echo "无法打开文件进行写入!";
}
?>
上面的代码将字符串”这是要写入文件的内容。”写入名为”example.txt”的文件中。如果文件不存在,将会创建一个新文件并写入内容。
原文链接:https://blog.yunshang6.com/?p=217&preview=true转载请注明出处。
本文链接地址:https://blog.yunshang6.com/217.html 转载请注明来源
评论(0)