php里stream_get_contents的返回值是什么

PHP
小樊
81
2024-09-20 15:40:14
欄目: 編程語言

在PHP中,stream_get_contents 函數(shù)從給定的流中讀取所有內(nèi)容,并返回它們作為字符串。如果流關(guān)閉或者到達(dá)末尾,該函數(shù)將返回 false。

函數(shù)的原型如下:

string stream_get_contents ( resource $handle )

參數(shù):

  • $handle:一個(gè)有效的文件流資源。

返回值:

  • 從流中讀取的所有內(nèi)容作為字符串。如果流關(guān)閉或到達(dá)末尾,則返回 false。

0