gpt4 book ai didi

Php 将 fopen 结果保存到一个字符串

转载 作者:行者123 更新时间:2023-12-04 00:32:29 28 4
gpt4 key购买 nike

如何将“$buffer”值放入字符串中,并在 fopen 和 fclose 函数之外使用它?谢谢。

$handle = @fopen("http://www.example.com/", "r");

if ($handle) {
while (!feof($handle)) {
$buffer = fgetss($handle, 5000);

echo $buffer ;
}

fclose($handle);
}

最佳答案

尝试 file_get_contents() :

$buffer = file_get_contents("/my/file.txt");

关于Php 将 fopen 结果保存到一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5789833/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com