PHP中讀取檔案的常用方法總結

來源:互聯網
上載者:User
本篇文章主要介紹PHP中讀取檔案的常用方法總結,感興趣的朋友參考下,希望對大家有所協助。

1.fread

string fread ( int $handle , int $length )

fread() 從 handle 指向的檔案中讀取最多 length 個位元組。該函數在讀取完最多 length 個位元組數,或到達 EOF 的時候,或(對於網路流)當一個包可用時,或(在開啟使用者空間流之後)已讀取了 8192 個位元組時就會停止讀取檔案,視乎先碰到哪種情況。

fread() 返回所讀取的字串,如果出錯返回 FALSE。

<?php  $filename = "/usr/local/something.txt";  $handle = fopen($filename, "r");//讀取二進位檔案時,需要將第二個參數設定成'rb'    //通過filesize獲得檔案大小,將整個檔案一下子讀到一個字串中  $contents = fread($handle, filesize ($filename));  fclose($handle);?>

如果所要讀取的檔案不是本地普通檔案,而是遠程檔案或者流檔案,就不能用這種方法,因為,filesize不能獲得這些檔案的大小。此時,你需要通過feof()或者fread()的傳回值判斷是否已經讀取到了檔案的末尾。

例如:

<?php  $handle = fopen('http://www.baidu.com', 'r');  $content = '';  while(!feof($handle)){    $content .= fread($handle, 8080);  }  echo $content;  fclose($handle);?>

或者:

<?php  $handle = fopen('http://www.baidu.com', 'r');  $content = '';  while(false != ($a = fread($handle, 8080))){//返回false表示已經讀取到檔案末尾    $content .= $a;  }  echo $content;  fclose($handle);?>

2.fgets

string fgets ( int $handle [, int $length ] )

fgets()從 handle 指向的檔案中讀取一行並返回長度最多為 length - 1 位元組的字串。碰到分行符號(包括在傳回值中)、EOF 或者已經讀取了 length - 1 位元組後停止(看先碰到那一種情況)。如果沒有指定 length,則預設為 1K,或者說 1024 位元組。

<?php  $handle = fopen('./file.txt', 'r');  while(!feof($handle)){    echo fgets($handle, 1024);  }  fclose($handle);?>

Note: length 參數從 PHP 4.2.0 起成為可選項,如果忽略,則行的長度被假定為 1024。從 PHP 4.3 開始,忽略掉 length 將繼續從流中讀取資料直到行結束。如果檔案中的大多數行都大於 8KB,則在指令碼中指定最大行的長度在利用資源上更為有效。從 PHP 4.3 開始本函數可以安全用於二進位檔案。早期的版本則不行。

3.fgetss

string fgetss ( resource $handle [, int $length [, string $allowable_tags ]] )

跟fgets功能一樣,但是fgetss會嘗試從讀取的文本中去掉任何 HTML 和 PHP 標記,可以用可選的第三個參數指定哪些標記不被去掉。

<?php  $handle = fopen('./file.txt', 'r');  while(!feof($handle)){    echo fgetss($handle, 1024, '<br>');  }  fclose($handle);?>

4.file

array file ( string $filename [, int $use_include_path [, resource $context ]] )

將檔案內容讀入一個數組中,數組的每一項對應檔案中的一行,包括分行符號在內。不需要行結束符時可以使用 rtrim() 函數過濾分行符號。

<?php  $a = file('./file.txt');  foreach($a as $line => $content){    echo 'line '.($line + 1).':'.$content;  }?>

5.readfile

int readfile ( string $filename [, bool $use_include_path [, resource $context ]] )

讀入一個檔案並寫入到輸出緩衝。返回從檔案中讀入的位元組數。如果出錯返回 FALSE 並且除非是以 @readfile() 形式調用,否則會顯示錯誤資訊。

<?php  $size = readfile('./file.txt');  echo $size;?>

6.file_get_contents

string file_get_contents ( string $filename [, bool $use_include_path [, resource $context [, int $offset [, int $maxlen ]]]] )

將檔案讀入一個字串。第三個參數$context可以用來設定一些參數,比如訪問遠程檔案時,設定逾時等等。

另外,file_get_contents相對於以上幾個函數,效能要好得多,所以應該優先考慮使用file_get_contents。但是readfile貌似比file_get_contents效能好一點(?),因為它不需要調用fopen。

<?php   $ctx = stream_context_create(array(     'http' => array(       'timeout' => 1  //設定逾時      )     )   );   echo file_get_contents("http://www.baidu.com/", 0, $ctx); ?>

7.fpassthru

int fpassthru ( resource $handle )

將給定的檔案指標從當前的位置讀取到 EOF 並把結果寫到輸出緩衝區。

<?php   header("Content-Type:text/html;charset=utf-8");   $handle = fopen('./test2.php', 'r');  fseek($handle, 1024);//將指標定位到1024位元組處  fpassthru($handle);?>

8.parse_ini_file

array parse_ini_file ( string $filename [, bool $process_sections ] )

parse_ini_file() 載入一個由 filename 指定的 ini 檔案,並將其中的設定作為一個聯合數組返回。如果將最後的 process_sections 參數設為 TRUE,將得到一個多維陣列,包括了設定檔中每一節的名稱和設定。process_sections 的預設值是 FALSE。

注意:

1. 如果 ini 檔案中的值包含任何非字母數位字元,需要將其括在雙引號中(")。

2. 有些保留字不能作為 ini 檔案中的鍵名,包括:null,yes,no,true 和 false。值為 null,no 和 false 等效於 "",值為 yes 和 true 等效於 "1"。字元 {}|&~![()" 也不能用在鍵名的任何地方,而且這些字元在選項值中有著特殊的意義。

test.ini檔案內容:

; This is a sample configuration file; Comments start with ';', as in php.ini[first_section]one = 1five = 5animal = BIRD[second_section]path = "/usr/local/bin"URL = "http://www.example.com/~username

test.php內容:

<?php   $config = parse_ini_file('./test.ini', ture);  print_r($config);?>

輸出內容:

Array(  [first_section] => Array    (      [one] => 1      [five] => 5      [animal] => BIRD    )  [second_section] => Array    (      [path] => /usr/local/bin      [URL] => http://www.example.com/~username    ))

幾個注意事項:

1. 鼓勵在處理二進位檔案時使用 b 標誌,即使系統並不需要,這樣可以使指令碼的移植性更好。

2. allow_url_fopen選項啟用了 URL 形式的 fopen 封裝協議使得可以存取 URL 對象例如檔案。預設的封裝協議提供用 ftp 和 http 協議來訪問遠程檔案,一些擴充庫例如 zlib 可能會註冊更多的封裝協議。出於安全性考慮,此選項只能在 php.ini 中設定。

3. 如果要開啟有特殊字元的 URL (比如說有空格),就需要使用 urlencode() 進行 URL 編碼。

總結:以上就是本篇文的全部內容,希望能對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.