stream_get_contents
是 PHP 中的一個(gè)函數(shù),用于從給定的流(比如文件、網(wǎng)絡(luò)連接等)中讀取數(shù)據(jù),并將其作為字符串返回。以下是使用 stream_get_contents
的基本方法:
<?php
$filename = 'example.txt';
$content = stream_get_contents($filename);
echo $content; // 輸出文件內(nèi)容
?>
<?php
$url = 'https://www.example.com/';
$content = stream_get_contents($url);
echo $content; // 輸出 URL 內(nèi)容
?>
<?php
$string = "Hello, World!";
$content = stream_get_contents($string);
echo $content; // 輸出字符串內(nèi)容
?>
<?php
$resource = fopen('example.txt', 'r');
$content = stream_get_contents($resource);
echo $content; // 輸出文件內(nèi)容
fclose($resource);
?>
注意:在使用 stream_get_contents
時(shí),確保提供給它的流是有效的,否則它將返回 false
。要檢查流是否有效,可以使用 stream_is_valid()
函數(shù)。