標題:
PHP 基礎語法(六) 檔案處理
[打印本頁]
作者:
陳育霖
時間:
2023-9-8 23:05
標題:
PHP 基礎語法(六) 檔案處理
本帖最後由 陳育霖 於 2023-9-8 23:07 編輯
判斷檔案存在與否
$filename = "example.txt";
if (file_exists($filename)) {
echo "文件存在.";
} else {
echo "文件不存在.";
}
複製代碼
讀取檔案內容
$filename = "example.txt";
$fileContents = file_get_contents($filename);
echo "内容: " . $fileContents;
複製代碼
刷新檔案內容
$filename = "example.txt";
$newContent = "新內容";
file_put_contents($filename, $newContent);
echo "内容已更新.";
複製代碼
新增檔案內容
$filename = "example.txt";
$appendContent = "追加的内容";
file_put_contents($filename, $appendContent, FILE_APPEND);
echo "已追加內容至檔案中.";
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2