【PHP】创建文件并写入内容
生活随笔
收集整理的這篇文章主要介紹了
【PHP】创建文件并写入内容
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
/*** 1.文件不存在,創建并寫入內容* 2.文件存在,比較新內容與文件已有內容,* 不同->覆蓋文件內容;* 相同->不操作文件;*/function createAndWrite($filePath, $fileContent){$log = [];// 文件存在if (file_exists($filePath)) {$oriFileContent = file_get_contents($filePath);if ($fileContent != $oriFileContent) {// 返回字節數$byteCount = file_put_contents($filePath, $fileContent);$log[] = "{$filePath}重置,寫入新內容:{$fileContent}";}}// 文件不存在// 'w+' 讀寫方式打開,將文件指針指向文件頭并將文件大小截為零。如果文件不存在則嘗試創建之if (($fp = fopen($filePath, "w+")) === false) {$log[] = "創建 {$filePath}失敗";}if (!fwrite($fp, $fileContent)) {$log[] = "嘗試向{$filePath}寫入{$fileContent}失敗";fclose($fp);}fclose($fp);return $log;}
總結
以上是生活随笔為你收集整理的【PHP】创建文件并写入内容的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Pv4、IPv6 、域名 正则表达式
- 下一篇: 【Prometheus 】 Black