php file_get_contents函數怎麼用?
作用:把整個檔案讀入一個字串中。
語法:
file_get_contents ( string $filename [, bool $use_include_path = false [, resource $context [, int $offset = -1 [, int $maxlen ]]]] ) : string
用於將檔案的內容讀入到一個字串中的首選方法。如果作業系統支持,也會使用記憶體映射技術來增強效能。
參數:
filename | 要讀取的檔案的名稱。 |
use_include_path | 在PHP 5中,FILE_USE_INCLUDE_PATH可以用來觸發包含路徑搜尋。 |
context |
使用stream_context_create()建立的有效上下文資源。 如果你不需要自訂 context,可以用 NULL 來忽略。 |
offset |
讀取在原始流上開始的偏移量。 遠端檔案不支援查找(偏移量)。嘗試在非本地文件上尋找可能會使用較小的偏移量,但這是不可預測的,因為它在緩衝流上工作。 |
maxlen | 讀取資料的最大長度。預設的讀取方式是讀取到檔案的末尾。請注意,此參數應用於篩選器處理的流。 |
傳回值:
函數傳回讀取的資料或失敗時傳回 FALSE。
php file_get_contents()函數使用範例
來取得網站首頁
<?php $homepage = file_get_contents('http://www.example.com/'); echo $homepage; ?>
讀取檔案的一個部分
<?php // Read 14 characters starting from the 21st character $section = file_get_contents('./people.txt', NULL, NULL, 20, 14); var_dump($section); ?>
#在包含路徑中搜尋
<?php // <= PHP 5 $file = file_get_contents('./people.txt', true); // > PHP 5 $file = file_get_contents('./people.txt', FILE_USE_INCLUDE_PATH); ?>
使用上下文
<?php // Create a stream $opts = array( 'http'=>array( 'method'=>"GET", 'header'=>"Accept-language: en\r\n" . "Cookie: foo=bar\r\n" ) ); $context = stream_context_create($opts); // Open the file using the HTTP headers set above $file = file_get_contents('http://www.example.com/', false, $context); ?>
以上是php file_get_contents函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!