首頁  >  文章  >  後端開發  >  php file_get_contents函數怎麼用

php file_get_contents函數怎麼用

藏色散人
藏色散人原創
2019-05-25 10:29:214970瀏覽

php file_get_contents函數怎麼用

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(&#39;http://www.example.com/&#39;);
echo $homepage;
?>

讀取檔案的一個部分

<?php
// Read 14 characters starting from the 21st character
$section = file_get_contents(&#39;./people.txt&#39;, NULL, NULL, 20, 14);
var_dump($section);
?>

#在包含路徑中搜尋

<?php
// <= PHP 5
$file = file_get_contents(&#39;./people.txt&#39;, true);
// > PHP 5
$file = file_get_contents(&#39;./people.txt&#39;, FILE_USE_INCLUDE_PATH);
?>

使用上下文

<?php
// Create a stream
$opts = array(
  &#39;http&#39;=>array(
    &#39;method&#39;=>"GET",
    &#39;header&#39;=>"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(&#39;http://www.example.com/&#39;, false, $context);
?>

以上是php file_get_contents函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn