gpt4 book ai didi

php - 从包含的文件中捕获 STDOUT 到变量

转载 作者:行者123 更新时间:2023-12-04 06:30:40 25 4
gpt4 key购买 nike

如何捕获将包含文件保留到变量或其他文件的所有内容。

最佳答案

输出缓冲是要走的路。

<?php

ob_start(); // Start buffering output

include '/path/to/file/';

$myVariable = ob_get_clean(); // Put the buffered output
// into $myVariable and clear
// the output buffer

http://www.php.net/manual/en/function.ob-start.php

http://www.php.net/manual/en/function.ob-get-clean.php

关于php - 从包含的文件中捕获 STDOUT 到变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5451287/

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