在程序運行時,程序自己和數據通常都存在內存中,當程序運行結束後,存放在內存中的數據被釋放。若是須要長期保存程序運行所需的原始數據,或程序運行產生的結果,就須要把數據存儲在文件或數據庫。通常地,小型數據存儲在文件中,海量數據存儲在數據庫中。本文主要介紹php中目錄和文件的基本操做php
文件通常指存儲在外部介質上具備名字(文件名)的一組相關數據集合。用文件可長期保存數據,並實現數據共享html
PHP是以UNIX的文件系統爲模型的。所以在Windows系統中咱們只能得到」file」、」dir」或者「unknown」三種文件類型。而在UNIX系統中,咱們能夠得到block、char、dir、fifo、file、link和unknown七種類型數據庫
可使用函數filetype()獲取文件的具體類型,可能的值有fifo,char,dir,block,link,file 和 unknownwindows
string filetype ( string filename )
若是出錯則返回 FALSE。若是調用失敗或者文件類型未知的話 filetype() 還會產生一個 E_NOTICE 消息數組
在服務器中新建一個目錄test,並在目錄中新建一個文件a.txt安全
<?php echo filetype('test/a.txt'); // file echo filetype('test/'); // dir echo filetype('test/b.txt'); // Warning: filetype(): Lstat failed for test/b.txt ?>
在這7種文件類型中,window系統經常使用的是'file'和'dir'這兩種,它們配套的類型檢測函數分別是is_dir( )和is_file( )服務器
is_dir( )函數
判斷給定文件名是不是一個目錄。若是文件名存在而且是一個目錄則返回 true,不然返回 false post
bool is_dir(_name)
is_file( )測試
判斷給定文件名是否爲一個正常的文件,若是文件存在且爲正常的文件則返回 true
bool is_file(_name)
<?php var_dump (is_file('test/a.txt')); //boolean true var_dump (is_dir('test/')); //boolean true ?>
通常地,在文件或目錄右鍵菜單中,選擇屬性,便可查看文件的屬性
下表中列出了php中關於文件屬性的經常使用函數
<?php var_dump (file_exists('test/a.txt')); //boolean true var_dump (filesize('test/a.txt')); // int 0 var_dump (is_readable('test/a.txt')); //boolean true var_dump (is_writeable('test/a.txt')); //boolean true var_dump (is_executable('test/a.txt')); //boolean false var_dump (date("Y-m-d H:i:s",(filectime('test/a.txt'))));//string '2016-11-22 06:47:54' (length=19) var_dump (date("Y-m-d H:i:s",(filemtime('test/a.txt'))));//string '2016-11-22 06:47:54' (length=19) var_dump (date("Y-m-d H:i:s",(fileatime('test/a.txt'))));//string '2016-11-22 06:47:54' (length=19) ?>
windows下的目錄路徑使用是正斜槓(\),而unix下的目錄路徑使用是反斜槓(/)
$unixPath="/var/www/html/index.php"; //在UNIX系統中的絕對路徑,必須使用"/"分隔 $winPath="C:\\Appserv\\www\\index.php"; //在Windows系統的絕對路徑,默認使用"\"分隔 $winPath2="C:/Appserv/www/index.php"; //在Windows系統中也可以使用「/」分隔
由於在Windows系統中也可以使用(/)分隔。因此,在PHP中,不管是什麼操做系統,所有都使用反斜槓(/)表明路徑分隔符號
在PHP中,還提供了一個常量DIRECTORY_SEPARATOR,以此來表明目錄分隔符,但寫起來較麻煩
<?php echo "c:".DIRECTORY_SEPARATOR."a".DIRECTORY_SEPARATOR."b".DIRECTORY_SEPARATOR."c"; //c:\a\b\c ?>
在windows下多個路徑的分隔符使用分號(;)分隔,而unix下使用冒號(:)分隔
在PHP中,提供了一個常量PATH_SEPARATOR,用來在跨平臺的狀況下,表示多個路徑之間的分隔符
<?php echo "aaa/ccc/ddd".PATH_SEPARATOR."/www/yyyy";//aaa/ccc/ddd;/www/yyyy ?>
換行
在window下,換行是\r\n,而在unix下,換行是\n。一般在寫程序中,換行就以unix爲準,寫做\n
一樣地,PHP提供了一個常量PHP_EOL,用來在跨平臺的狀況下,表示換行
.和..
在PHP中,.表示當前目錄,..表示上一級目錄
<?php var_dump (file_exists('test/a.txt'));//boolean true var_dump (file_exists('./test/a.txt'));//boolean true var_dump (file_exists('../www/test/a.txt'));//boolean true ?>
根路徑
有兩種根路徑須要進行區分,一種是客戶端根路徑,一種是服務器根路徑
以我本身在d盤安裝的wamp爲例,客戶端根路徑指'd:\wamp\www\',而服務器根路徑爲爲'd:\'
<?php echo '<img src="/a.jpg">';//客戶端根路徑,至關於d:\wamp\www\a.jpg mkdir('/hello');//服務器根路徑,至關於d:\hello ?>
路徑解析函數
【basename()】
basename()函數用於返回路徑中的文件名部分
<?php echo "1) ".basename("/etc/sudoers.d", ".d");//1) sudoers echo "2) ".basename("/etc/passwd").PHP_EOL;//2) passwd echo "3) ".basename("/etc/").PHP_EOL;//3) etc echo "4) ".basename(".").PHP_EOL;//4) . echo "5) ".basename("/");//5) ?>
【dirname()】
dirname()函數用於返回路徑中的目錄部分
<?php echo "1) " . dirname("/etc/passwd") . PHP_EOL; // 1) /etc echo "2) " . dirname("/etc/") . PHP_EOL; // 2) \ echo "3) " . dirname("."); // 3) . ?>
【pathinfo()】
pathinfo()函數用於返回文件路徑的信息
<?php $path_parts = pathinfo('/www/htdocs/inc/lib.inc.php'); echo $path_parts['dirname'], "\n";// '/www/htdocs/inc' 目錄名 echo $path_parts['basename'], "\n";// 'lib.inc.php' 文件名 echo $path_parts['extension'], "\n";// 'php' 文件後綴 echo $path_parts['filename'], "\n"; // 'lib.inc' 文件名不帶後綴 ?>
【realpath()】
realpath()函數用於返回規範化的絕對路徑名
在Windows上,realpath()會將unix風格的路徑改爲Windows風格的
<?php echo realpath('/wamp');// 'D:\wamp' ?>
glob()
glob()函數用於尋找與模式匹配的文件路徑
array glob ( string $pattern [, int $flags = 0 ] )
在www目錄下新建a.txt和b.txt文件
<?php foreach (glob("*.txt") as $filename) { //a.txt size 1050 b.txt size 73 echo "$filename size " . filesize($filename) . "\n"; } ?>
opendir()
opendir()函數用於打開目錄句柄。若是成功則返回目錄句柄的resource,失敗則返回 FALSE
resource opendir ( string $path [, resource $context ] )
<?php var_dump(opendir('test'))//resource(3, stream) ?>
closedir()
closedir()函數用於關閉目錄句柄
void closedir ([ resource $dir_handle ] )
參數dir_handle表示目錄句柄的 resource,以前由 opendir()所打開的。若是目錄句柄沒有指定,那麼會假定爲是opendir()所打開的最後一個句柄
<?php $dir = opendir('test'); closedir($dir); ?>
readdir()
readdir()函數用於從目錄句柄中讀取條目,返回目錄中下一個文件的文件名。文件名以在文件系統中的排序返回,失敗時返回 FALSE
string readdir ([ resource $dir_handle ] )
在www目錄下新建目錄test,並在目錄test下新建a.txt和b.txt文件
<?php $dir = opendir('test'); echo readdir($dir)."<br>";//. echo readdir($dir)."<br>";//.. echo readdir($dir)."<br>";//a.txt echo readdir($dir)."<br>";//b.txt echo readdir($dir)."<br>";// closedir($dir); ?>
在遍歷目錄時,每一個目錄的前兩個返回值都是.和..,.表明當前目錄,..表明上一級目錄
因此,通常地,列出當前目錄的全部文件並去掉 . 和 ..,常採用下面的代碼
<?php if ($handle = opendir('test')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { echo "$file\n"; } } closedir($handle); } ?>
接下來,在test目錄下,新建一個目錄in,並在in目錄中新建文件c.txt。而後,目錄和文件區分顯示
[注意]經過is_dir()函數判斷目錄時,須要加入路徑
<?php if ($handle = opendir('test')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { $file = "test/".$file; if(is_dir($file)){ echo "目錄:".$file."<br>"; }else{ echo "文件:".$file."<br>"; } } } closedir($handle); } /* 文件:test/a.txt 文件:test/b.txt 目錄:test/in */ ?>
rewinddir()
rewinddir()函數用於倒回目錄句柄,將參數dir_handle指定的目錄流重置到目錄的開頭
void rewinddir ( resource $dir_handle )
若是不使用rewinddir()函數,則文件只能遍歷一次
<?php if ($handle = opendir('test')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { $file = "test/".$file; if(is_dir($file)){ echo "目錄:".$file."<br>"; }else{ echo "文件:".$file."<br>"; } } } while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { $file = "test/".$file; if(is_dir($file)){ echo "目錄:".$file."<br>"; }else{ echo "文件:".$file."<br>"; } } } closedir($handle); } /* 文件:test/a.txt 文件:test/b.txt 目錄:test/in */ ?>
使用rewinddir()函數,能夠把目錄句柄返回到第一個文件,從而實現從新遍歷
<?php if ($handle = opendir('test')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { $file = "test/".$file; if(is_dir($file)){ echo "目錄:".$file."<br>"; }else{ echo "文件:".$file."<br>"; } } } rewinddir($handle); while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { $file = "test/".$file; if(is_dir($file)){ echo "目錄:".$file."<br>"; }else{ echo "文件:".$file."<br>"; } } } closedir($handle); } /* 文件:test/a.txt 文件:test/b.txt 目錄:test/in 文件:test/a.txt 文件:test/b.txt 目錄:test/in */ ?>
disk_total_space()
disk_total_space()函數返回一個目錄的磁盤總大小
float disk_total_space ( string $directory )
<?php $ds = disk_total_space("C:"); echo $ds."<br>";//126652637184 $ds = disk_total_space("D:"); echo $ds;//1000202240000 ?>
disk_free_space()
disk_free_space()函數返回目錄中的可用空間
float disk_free_space ( string $directory )
<?php $ds = disk_free_space("C:"); echo $ds."<br>";//86087041024 $ds = disk_free_space("D:"); echo $ds;//481647472640 ?>
下面來統計在www文件夾下新建的test目錄的個數
<?php $dirn = 0; //目錄數 $filen = 0; //文件數 //統計一個目錄下的文件和目錄的個數 function getdirnum($file) { global $dirn; global $filen; $dir = opendir($file); while (false !== ($filename = readdir($dir))) { if($filename!="." && $filename !="..") { $filename = $file."/".$filename; //更新路徑 if(is_dir($filename)) { $dirn++; getdirnum($filename); //遞歸,就能夠查看全部子目錄 } else { $filen++; } } } closedir($dir); } getdirnum("test"); echo "目錄數爲:{$dirn}<br>";//目錄數爲:1 echo "文件數爲:{$filen}<br>";//文件數爲:3 ?>
下面來統計在www文件夾下新建的test目錄的大小
<?php //統計目錄大小 function dirsize($file) { $size = 0; $dir = opendir($file); while(false !== ($filename = readdir($dir))) { if($filename!="." && $filename !="..") { $filename = $file."/".$filename; if(is_dir($filename)) { $size += dirsize($filename);//使用遞歸 } else { $size += filesize($filename); } } } closedir($dir); return $size; } echo "test目錄大小爲:".dirsize("test")."<br>";//test目錄大小爲:302 ?>
mkdir()
mkdir()函數用於新建目錄
bool mkdir ( string $pathname [, int $mode = 0777 [, bool $recursive = false [, resource $context ]]] )
rmdir()
rmdir()函數用於刪除目錄
bool rmdir ( string $dirname [, resource $context ] )
[注意]該目錄必須是空的,並且要有相應的權限。失敗時會產生一個 E_WARNING 級別的錯誤
unlink()
unlink()函數用於刪除文件
bool unlink ( string $filename [, resource $context ] )
下面來清空test目錄
<?php function deldir($dirname) { //若是是文件,直接刪除便可 if(is_file($dirname)) { unlink($dirname); } $dir = opendir($dirname); while(FALSE !== ($filename = readdir($dir))) { if($filename !="." && $filename!="..") { $filename = $dirname."/".$filename; if(is_dir($filename)) { deldir($filename);//遞歸 }else { unlink($filename);//刪除文件 } } } closedir($dir); if($dirname != 'test'){ rmdir($dirname);//刪除目錄 } } deldir("test"); ?>
copy()
copy()函數用於拷貝文件
bool copy ( string $source , string $dest [, resource $context ] )
[注意]copy()函數不能用於複製目錄
<?php $file = 'a.txt'; $newfile = 'a.bak'; copy($file, $newfile); ?>
rename()
rename()函數用於重命名一個文件或目錄
bool rename ( string $oldname , string $newname [, resource $context ] )
[注意]rename()函數具備移動文件或目錄的功能
下面把www目錄下的test目錄剪貼,命名爲t,並移動到d盤目錄下
<?php rename("test", "d:/t"); ?>
使用rename()只能實現剪切的操做,使用copy()只能複製文件。若是要複製目錄,則須要使用循環和遍歷
<?php /** * $dirsrc 原目錄 * $dirto 目標目錄 */ function copydir($dirsrc, $dirto) { //若是目錄不存在,則新建一個目錄 if(!file_exists($dirto)) { mkdir($dirto); } $dir = opendir($dirsrc); while(FALSE !== ($filename = readdir($dir))) { if($filename != "." && $filename !="..") { $srcfile = $dirsrc."/".$filename; //原文件 $tofile = $dirto."/".$filename; //目標文件 if(is_dir($srcfile)) { copydir($srcfile, $tofile); //遞歸處理全部子目錄 }else{ copy($srcfile, $tofile);//複製文件 } } } } copydir("test", "d:/t"); ?>
touch()
touch()函數用來設定文件的訪問和修改時間。若是文件不存在,則會被建立。成功時返回 TRUE, 或者在失敗時返回 FALSE
bool touch ( string $filename [, int $time = time() [, int $atime ]] )
參數filename表示要設定的文件名,time表示要設定的時間。若是沒有提供參數 time 則會使用當前系統的時間;atime表示若是給出了這個參數,則給定文件的訪問時間會被設爲atime,不然會設置爲time。若是沒有給出這兩個參數,則使用當前系統時間
<?php touch('abc.txt') ?>
copy()
copy()函數用於拷貝文件
bool copy ( string $source , string $dest [, resource $context ] )
[注意]copy()函數不能用於複製目錄
<?php $file = 'a.txt'; $newfile = 'a.bak'; copy($file, $newfile); ?>
rename()
rename()函數用於重命名一個文件或目錄
bool rename ( string $oldname , string $newname [, resource $context ] )
[注意]rename()函數具備移動文件或目錄的功能
<?php rename("abc.txt", "d:/cba.txt"); ?>
unlink()
unlink()函數用於刪除文件
bool unlink ( string $filename [, resource $context ] )
<?php unlink("d:/cba.txt"); ?>
fopen()
fopen()函數用於打開文件或者URL,fopen()將 filename 指定的名字資源綁定到一個流上
fopen() 中 mode 的可能值列表
mode 說明 'r' 只讀方式打開,將文件指針指向文件頭。 'r+' 讀寫方式打開,將文件指針指向文件頭。 'w' 寫入方式打開,將文件指針指向文件頭並將文件大小截爲零。若是文件不存在則嘗試建立之。 'w+' 讀寫方式打開,將文件指針指向文件頭並將文件大小截爲零。若是文件不存在則嘗試建立之。 'a' 寫入方式打開,將文件指針指向文件末尾。若是文件不存在則嘗試建立之。 'a+' 讀寫方式打開,將文件指針指向文件末尾。若是文件不存在則嘗試建立之。
<?php //使用絕對路徑打開file.txt文件,選擇只讀模式,並返回資源$handle $handle = fopen("/home/rasmus/file.txt", "r"); //訪問文檔根目錄下的文件,也以只讀模式打開 $handle = fopen(「{$_SERVER['DOCUMENT_ROOT']}/data/info.txt", "r"); //在 Windows 平臺上,轉義文件路徑中的每一個反斜線,或者用斜線, 以二進制和只寫模式組合 $handle = fopen("c:\\data\\file.gif", "wb"); //使用相對路徑打開file.txt文件,選擇只讀模式,並返回資源$handle $handle = fopen("../data/info.txt", "r"); //打開遠程文件, 使用HTTP協議只能以只讀的模式打開 $handle = fopen("http://www.example.com/", "r"); //使用FTP協議打開遠程文件,若是FTP服務器可寫,則能夠以寫的模式打開 $handle = fopen("ftp://user:password@example.com/somefile.txt", "w"); ?>
fclose()
fclose()函數用於關閉一個已打開的文件指針
bool fclose ( resource $handle )
<?php $handle = fopen('test/a.txt', 'r'); fclose($handle); ?>
fwrite()
fwrite()函數用於寫入文件(可安全用於二進制文件),返回寫入的字符數,出現錯誤時則返回 FALSE
int fwrite ( resource $handle , string $string [, int $length ] )
當打開方式爲只讀模式時,沒法向文件寫入字符
<?php $fp = fopen('test/a.txt', 'r'); echo fwrite($fp, '1');//0 echo "<br>"; echo fwrite($fp, '23');//0 echo "<br>"; fclose($fp); ?>
當打開方式爲寫模式時,能夠向文件寫入字符
<?php $fp = fopen('test/a.txt', 'w'); echo fwrite($fp, '1');//1 echo "<br>"; echo fwrite($fp, '23');//2 echo "<br>"; fclose($fp); /* 文件內容爲123 */ ?>
當打開方式爲追加模式時,將向文件的尾部追加新的字符
<?php $fp = fopen('test/a.txt', 'a'); echo fwrite($fp, '1');//1 echo "<br>"; echo fwrite($fp, '23');//2 echo "<br>"; fclose($fp); /* 刷新兩次時,文件內容爲123123 */ ?>
fgetc()
fgetc()函數用於從文件指針中讀取字符
[注意]使用fgetc()函數時,須要在fopen()函數中使用讀模式
string fgetc ( resource $handle )
<?php $fp = fopen('test/a.txt', 'r'); echo fgetc($fp);//1 echo fgetc($fp);//2 echo fgetc($fp);//3 fclose($fp); ?>
feof()
feof()函數用於測試文件指針是否到了文件結束的位置
bool feof ( resource $handle )
<?php $fp = fopen('test/a.txt', 'r'); while(!feof($fp)){ echo fgetc($fp);//123123 } fclose($fp); ?>
fgets()
fgets()函數用於從文件指針中讀取一行
string fgets ( resource $handle [, int $length ] )
將test目錄下的a.txt文件內容修改成
aa bbb
<?php $fp = fopen('test/a.txt', 'r'); echo fgets($fp);//'aa' echo fgets($fp);//'bbb' echo fgets($fp);//'' fclose($fp); ?>
fread()
fread()函數用於讀取文件(可安全用於二進制文件)。fread()從文件指針handle讀取最多length個字節。該函數在讀取了length個字節或到達了文件末尾(EOF)時將中止讀取文件
string fread ( resource $handle , int $length )
<?php $fp = fopen('test/a.txt', 'r'); echo fread($fp,3);//'aa ' fclose($fp); $fp = fopen('test/a.txt', 'r'); echo fread($fp,filesize('test/a.txt'));//'aa bbb' fclose($fp); ?>
fseek()
fseek()函數用於在文件指針中定位,成功則返回 0;不然返回 -1
int fseek ( resource $handle , int $offset [, int $whence = SEEK_SET ] )
將test目錄下的a.txt文件內容修改成'12345'
<?php $fp = fopen('test/a.txt', 'r'); echo fgetc($fp);//'1' fseek($fp,4); echo fgetc($fp);//'5' fclose($fp); ?>
<?php $fp = fopen('test/a.txt', 'r'); echo fread($fp,2)."<br>";//12 fseek($fp,4); echo fread($fp,2)."<br>";//5 fseek($fp,-3,SEEK_END); echo fread($fp,2)."<br>";//34 fclose($fp); ?>
ftell()
ftell()函數用於返回文件指針讀/寫的位置
int ftell ( resource $handle )
<?php $fp = fopen('test/a.txt', 'r'); echo ftell($fp);//0 fgetc($fp); echo ftell($fp);//1 fseek($fp,4); echo ftell($fp);//4 fclose($fp); ?>
rewind()
rewind()函數用於倒回文件指針的位置,將handle的文件位置指針設爲文件流的開頭
bool rewind ( resource $handle )
<?php $fp = fopen('test/a.txt', 'r'); fseek($fp,2); echo ftell($fp);//2 rewind($fp); echo ftell($fp);//0 ?>
file_get_contents()
file_get_contents()函數用於將整個文件讀入一個字符串
string file_get_contents ( string $filename [, bool $use_include_path = false [, resource $context [, int $offset = -1 [, int $maxlen ]]]] )
<?php $homepage = file_get_contents('test/a.txt'); echo $homepage;//'12345' ?>
頁面變爲百度首頁
<?php $homepage = file_get_contents('http://www.baidu.com/'); echo $homepage; ?>
file_put_contents()
file_put_contents()函數用於將一個字符串寫入文件
int file_put_contents ( string $filename , mixed $data [, int $flags = 0 [, resource $context ]] )
使用該函數和依次調用 fopen(),fwrite() 以及 fclose() 功能同樣
[注意]默認爲寫模式,若設置第三個參數爲FILE_APPEND,則變爲追加模式
<?php file_put_contents('test/a.txt','abc'); ?>
readfile()
readfile()函數用於讀取文件並寫入到輸出緩衝
int readfile ( string $filename [, bool $use_include_path = false [, resource $context ]] )
<?php readfile('http://www.baidu.com/');//頁面中顯示百度首頁 ?> <?php readfile('test/a.txt');//頁面中顯示abc ?>
file()
file()函數用於把整個文件讀入一個數組中,每一行做爲一個數組的元素
array file ( string $filename [, int $flags = 0 [, resource $context ]] )
將a.txt的文件內容改成每一行一個數字,分別是一、二、三、四、五、六、七、八、9
<?php $arr = file('test/a.txt',0); echo $arr[0]."<br>";//1 echo count($arr);//9 ?>
ftruncate()
ftruncate()函數用於將文件截斷到給定的長度
bool ftruncate ( resource $handle , int $size )
[注意]使用ftruncate()函數時,須要使用追加模式。經測試,使用讀模式時無效,使用寫模式時,文件內容被清空
<?php $fp = fopen("test/a.txt","a"); ftruncate($fp,100); ?>