PHP檔案操作

2021-07-01 23:28:35 字數 445 閱讀 8893

模式引數:r唯讀

w只寫(從頭寫,並刪除原來的內容)

x謹慎寫a追加

b二進位制

$fp=fopen("路徑","模式");

flock($fp,lock_ex);//鎖定檔案

fwrite($fp,$outputstring,strlen($outputstring));

flock($fp,lock_un);//解除鎖定檔案

fclose($fp);

feof:file end of file檔案結束的測試條件

bool=file_exists()檔案是否存在

unlink();刪除檔案

touch();建立資料夾

$order=ile("zx.txt");//每行返回陣列中的乙個元素

while(!feof($fp))

if(file_exists())

php操作php檔案

聽起來有些暈吧?使用php來操作php頁面。有乙個小的用途,在乙個系統當中可能會有個別的小項不便存入資料庫,但是我們又要經常在其他頁面當中呼叫,而且還需要更新,那麼我們就可以用這種方式來解決。其中遇到幾個小問題,搞了俺半天時間才搞定 比如說 使用者需要更改某乙個標題,但是單獨為這個標題在建立乙個表,...

php檔案操作

1 開啟檔案 resource fopen string filename,string mode bool use include path resource zcontext handle fopen filename,mode 開啟檔案,返回代表此檔案的資源的控制代碼 檔名稱可以使用相對路徑或...

PHP 檔案操作

建立檔案 方法一 file fopen test.txt w 方法二 touch file 建立資料夾 mkdir web www testing test dir 0700 建立多層資料夾 原生 mkdir web www testing test dir 0700,true 遞迴 functio...