stream_get_contents
是一個 PHP 函數,用于從給定的流(如文件、字符串或數據流)中讀取所有內容并將其作為字符串返回
$filename = 'example.txt';
$file = fopen($filename, 'r');
if (!$file) {
die("Error: Could not open file '$filename'.");
}
stream_get_contents
從文件中讀取內容:$content = stream_get_contents($file);
if ($content === false) {
die("Error: Could not read from file '$filename'.");
}
fclose($file);
echo "Content of the file '$filename':\n";
echo $content;
將以上代碼片段組合在一起,完整的示例代碼如下:
<?php
$filename = 'example.txt';
// 打開文件
$file = fopen($filename, 'r');
if (!$file) {
die("Error: Could not open file '$filename'.");
}
// 從文件中讀取內容
$content = stream_get_contents($file);
if ($content === false) {
die("Error: Could not read from file '$filename'.");
}
// 關閉文件
fclose($file);
// 處理讀取到的內容
echo "Content of the file '$filename':\n";
echo $content;
?>
對于其他類型的流(如字符串或數據流),只需將 fopen
替換為相應的函數(如 fopen('data:text/plain;base64,SGVsbG8sIFdvcmxkIQ==', 'r')
)即可。