這篇文章主要介紹了PHP編程檔案處理類SplFileObject和SplFileInfo用法,結合執行個體形式分析了檔案處理類SplFileObject和SplFileInfo的功能、定義、使用方法與相關注意事項,需要的朋友可以參考下
php對於大檔案的處理除了用以下方法外還可以直接調用linux命令
檔案處理類:
SplFileInfo {/* 方法 */public __construct ( string $file_name )public int getATime ( void ) //擷取檔案的最後訪問時間public string getBasename ([ string $suffix ] ) //擷取檔案的沒有路徑資訊的基本名稱,參數可以為檔案尾碼,若有參數則返回沒有該尾碼的檔案基本名稱。public int getCTime ( void ) //返迴文章最後一次變更的時間戳記。public string getExtension ( void ) //擷取副檔名public SplFileInfo getFileInfo ([ string $class_name ] ) //以對象的形式返迴文件路徑和名稱public string getFilename ( void ) //擷取檔案名稱,不帶路徑public int getGroup ( void ) //擷取檔案所在組,返回組idpublic int getInode ( void ) //擷取檔案索引節點public string getLinkTarget ( void ) //擷取檔案連結目標public int getMTime ( void ) //擷取最後修改時間public int getOwner ( void ) //擷取檔案的所有者public string getPath ( void ) //擷取檔案路徑,不帶檔案名稱和最後的斜杠public SplFileInfo getPathInfo ([ string $class_name ] ) //返迴路徑對象public string getPathname ( void ) //擷取檔案路徑public int getPerms ( void ) //擷取檔案許可權public string getRealPath ( void ) //擷取檔案絕對路徑,若檔案不存在,返回falsepublic int getSize ( void ) //返迴文件大小,單位位元組public string getType ( void ) //返迴文件類型,可能是 file, link, dirpublic bool isDir ( void ) //判斷是否是目錄,是放回true否則返回falsepublic bool isExecutable ( void ) //判斷檔案是否可執行,返回true,否則返回falsepublic bool isFile ( void ) //如果檔案存在且是一個普通檔案(不是連結),返回true,否則返回falsepublic bool isLink ( void ) //判斷檔案是否是串連,不是返回falsepublic bool isReadable ( void ) //判斷檔案是否可讀,可讀返回truepublic bool isWritable ( void ) //判斷檔案是否可寫,可寫返回truepublic SplFileObject openFile ([ string $open_mode = "r" [, bool $use_include_path = false [, resource $context = NULL ]]] ) //擷取檔案對象資訊public void setFileClass ([ string $class_name = "SplFileObject" ] )public void setInfoClass ([ string $class_name = "SplFileInfo" ] )public void __toString ( void ) //以字串的形式返迴文件路徑及名稱}
使用方法:
$info = new SplFileInfo($file_name);
SplFileObject {/* 常量 */const integer DROP_NEW_LINE = 1 ;const integer READ_AHEAD = 2 ;const integer SKIP_EMPTY = 4 ;const integer READ_CSV = 8 ;/* 方法 */public string|array current ( void ) //返迴文件當前行內容public bool eof ( void ) //檢測檔案是否到末尾,如果到末尾返回true,否則返回falsepublic bool fflush ( void ) //將緩衝內容輸出到檔案,成功時返回 TRUE, 或者在失敗時返回 FALSE。public string fgetc ( void ) //按字元讀取檔案public array fgetcsv ([ string $delimiter = "," [, string $enclosure = "\"" [, string $escape = "\\" ]]] ) //讀取csv檔案public string fgets ( void ) //按行讀取檔案public string fgetss ([ string $allowable_tags ] ) //按行讀取檔案,並去掉html標記public bool flock ( int $operation [, int &$wouldblock ] ) //檔案鎖定或解鎖,返回true或false/*參數:LOCK_SH 共用鎖定 (讀).LOCK_EX 獨佔鎖 (寫).LOCK_UN 釋放鎖 (共用或獨佔).LOCK_NB (附加鎖定) 如果不希望flock()在鎖定時堵塞,則應在上述鎖定後加上改鎖(windows上不支援)flock(LOCK_EX+LOCK_NB); // 獨佔鎖定加上附加鎖定flock(LOCK_UN+LOCK_NB); */public int fpassthru ( void ) //輸出檔案指標之後的所有資料和字元數public int fputcsv (array $fields) //將一維數組作為一行輸入csv檔案中,返回寫入的字串長度或falsepublic string fread ( int $length ) //從檔案中讀取指定的位元組數,返回讀取的字串或falsepublic mixed fscanf ( string $format [, mixed &$... ] ) //從檔案中讀取一行並按照指定模式解析/*例:$file = new SplFileObject("misc.txt");while ($userinfo = $file->fscanf("%s %s %s")) { list ($name, $profession, $countrycode) = $userinfo; // Do something with $name $profession $countrycode}*/public int fseek ( int $offset [, int $whence = SEEK_SET ] ) //按位元組移動檔案指標位置,/*SEEK_SET 設定檔案指標到指定位元組位置(預設為該模式).SEEK_CUR 設定檔案指標到當前位置加上指定位元組位置.SEEK_END 設定檔案指標到檔案末尾加上指定位元組位置(此時位元組經常為負值).public array fstat ( void ) //擷取檔案資訊,以數組形式返回*//*數字下標 關聯鍵名(自 PHP 4.0.6) 說明0 dev device number - 裝置名稱1 ino inode number - inode 號碼2 mode inode protection mode - inode 保護模式3 nlink number of links - 被串連數目4 uid userid of owner - 所有者的使用者 id5 gid groupid of owner- 所有者的組 id6 rdev device type, if inode device * - 裝置類型,如果是 inode 裝置的話7 size size in bytes - 檔案大小的位元組數8 atime time of last access (unix timestamp) - 上次訪問時間(Unix 時間戳記)9 mtime time of last modification (unix timestamp) - 上次修改時間(Unix 時間戳記)10 ctime time of last change (unix timestamp) - 上次改變時間(Unix 時間戳記)11 blksize blocksize of filesystem IO * - 檔案系統 IO 的塊大小12 blocks number of blocks allocated - 所佔據塊的數目* Windows 下總是 0。* - 僅在支援 st_blksize 類型的系統下有效。其它系統(如 Windows)返回 -1。 */public int ftell ( void ) //返回當前檔案位置,檔案指標位置public bool ftruncate ( int $size ) //將檔案截斷到指定的長度,若長度大於檔案長度用空補齊(檔案開啟方法對其有影響)public int fwrite ( string $str [, int $length ] ) //將$str字串寫入檔案,唯寫$length長度。放回寫入位元組數或nullpublic array getCsvControl ( void ) //Gets the delimiter and enclosure character used for parsing CSV fields.public int getFlags ( void ) //Gets the flags set for an instance of SplFileObject as an integer.public int getMaxLineLen ( void ) //返回一行讀取的最大位元組數(在已設定的前提下),若未設定,預設為0public int key ( void ) //擷取當前行號。public void next ( void ) //移動到下一行public void rewind ( void ) //返回到第一行public void seek ( int $line_pos ) //定位到檔案指定行public void setCsvControl ([ string $delimiter = "," [, string $enclosure = "\"" [, string $escape = "\\" ]]] )public void setFlags ( int $flags )public void setMaxLineLen ( int $max_len ) //設定檔案讀取一行的最大位元組數,若檔案每行有10個字元,但設定最大讀取為public bool valid ( void ) //檢查是否到達檔案底部,未到達底部返回 TRUE ,抵達返回false.}
用法:
$file = new SplFileObject("misc.txt", 'r+');while (!$file->eof()) { echo $file->current(); $file->next();}//關閉檔案對象$file = null;
熱門檔案處理方法:
/** * 擷取檔案指定行數範圍資料 * @param unknown $filename 檔案名稱 * @param number $startLine 開始行 * @param number $endLine 結束行 * @param string $method * @return multitype: */function getFileLines($filename, $startLine = 1, $endLine = 20, $method = 'rb'){ $content = array(); $count = $endLine - $startLine; $fp = new SplFileObject($filename, $method); $fp->seek($startLine - 1); // 轉到第N行, seek方法參數從0開始計數 for ($i = 0; $i <= $count; ++$i) { $content[] = $fp->current(); // current()擷取當前行內容 $fp->next(); // 下一行 if($fp->eof()) { array_pop($content); break; } } return array_filter($content); // array_filter過濾:false,null,''}/** * 擷取文章最後一行內容 * @param string $res 檔案路徑/名 */function get_last_line($res) { $fp = fopen($res, 'r'); if (false == $fp) { return 'error'; } fseek($fp,-1,SEEK_END); $s = ''; while(($c = fgetc($fp)) !== false) { if($c == "\n" && $s) break; $s = $c . $s; fseek($fp, -2, SEEK_CUR); } fclose($fp); return $s;}
相關推薦:
php檔案處理類中關於SplFileObject與SplFileInfo的具體詳解
PHP檔案處理的進階應用程式—檔案指標
PHP檔案處理的進階應用程式—遠程檔案訪問及鎖定檔案