使用 include/require_once 将内容分配给变量

发布于 2024-12-10 08:58:53 字数 186 浏览 0 评论 0原文

是否可以这样做

$var = require_once('lol.php');

,以便 lol.php 所做的任何 HTML 输出都将进入 $var 内部?

我了解输出缓冲,但是是否有一些特殊的内置函数已经可以做到这一点?

Is it possible to do like

$var = require_once('lol.php');

so that any HTML output that lol.php does will go inside $var?

I know about output buffering, but is there some special built-in function that already does this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

过期以后 2024-12-17 08:58:53

$var = require_once('lol.php'); 只会将文件的返回值放入 $var 中。如果您没有从中返回任何内容,则它只是 null

如果您想要输出,则需要使用输出缓冲:

ob_start();
require_once('lol.php');
$var = ob_get_clean();

$var = require_once('lol.php'); will only put the return value of the file into $var. If you don't return anything from it, it'll just be null.

If you want the output you will need to use output buffering:

ob_start();
require_once('lol.php');
$var = ob_get_clean();
南城追梦 2024-12-17 08:58:53

=include() 调用的赋值只会让您从该脚本获得可能的返回值,而不是任何输出。

为了实现这一点,您必须修改包含脚本以捕获输出:

 <?php
      ob_start();

      ...

      return ob_get_clean();
 ?>

The assignment from an =include() call will only get you a possible return value from that script, not any output.

To make this possible you would have to modify the include script to capture the output:

 <?php
      ob_start();

      ...

      return ob_get_clean();
 ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文