首頁 >後端開發 >PHP問題 >PHP 函數 file_get_contents 怎麼用?

PHP 函數 file_get_contents 怎麼用?

Guanhui
Guanhui原創
2020-06-24 14:02:123146瀏覽

PHP 函數 file_get_contents 怎麼用?

PHP 函數 file_get_contents 怎麼用?

在PHP中file_get_contents函數的作用是將整個檔案讀入一個字串,其語法為“file_get_contents($filename) ”,傳回值為讀取的字符,使用方法只需將檔案路徑傳入$filename即可。

使用範例

<?php
$homepage = file_get_contents(&#39;http://www.example.com/&#39;);
echo $homepage;
?>
<?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
// Read 14 characters starting from the 21st character
$section = file_get_contents(&#39;./people.txt&#39;, NULL, NULL, 20, 14);
var_dump($section);
?>
string(14) "lle Bjori Ro"

#推薦教學:《PHP

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

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

相關文章

看更多