file_get_contents() 函數把整個檔案讀入一個字串。
和 file() 一樣,不同的是 file_get_contents() 把檔案讀成一個字串。
file_get_contents() 函數是用來將檔案的內容讀入到一個字串中的首選方法。如果作業系統支持,也會使用記憶體映射技術來增強效能。
本篇文章主要使用file_get_contents函式呼叫其他系統http介面,如下
傳入介面url及其參數:如
$url="http://192.168.1.1/test.jsp?id=1&type=2"; $ret=file_get_contents($url);
以上是php中呼叫其他系統http介面的使用方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!