PHP file_get_contents() 函數(shù) |
發(fā)布時(shí)間: 2012/9/1 16:36:03 |
定義和用法file_get_contents() 函數(shù)把整個(gè)文件讀入一個(gè)字符串中。
和 file() 一樣,不同的是 file_get_contents() 把文件讀入一個(gè)字符串。
file_get_contents() 函數(shù)是用于將文件的內(nèi)容讀入到一個(gè)字符串中的首選方法。如果操作系統(tǒng)支持,還會(huì)使用內(nèi)存映射技術(shù)來(lái)增強(qiáng)性能。
語(yǔ)法file_get_contents(path,include_path,context,start,max_length)
說(shuō)明對(duì) context 的支持是 PHP 5.0.0 添加的。 提示和注釋注釋:本函數(shù)可安全用于二進(jìn)制對(duì)象。 例子<?php print_r(file("test.txt")); ?> 輸出: Array ( [0] => Hello World. Testing testing! [1] => Another day, another line. [2] => If the array picks up this line, [3] => then is it a pickup line? ) 本文出自:億恩科技【1tcdy.com】 服務(wù)器租用/服務(wù)器托管中國(guó)五強(qiáng)!虛擬主機(jī)域名注冊(cè)頂級(jí)提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM] |