评估页面和存储在变量中?

发布于 2024-08-21 21:29:56 字数 348 浏览 4 评论 0原文

我想获取一个 php 文件,评估任何 php,然后将内容存储在变量中。

我们将其称为.. page.php

<?php
$content = "Hello World.";
?>

<html>
<head>
<title><?php echo $content ?></title>
</head>
<body>
<?php echo $content ?>
</body>
</html

我想通过调用另一个文件中的函数将其放入变量中。

I want to grab a php file, evaluate any php, then store the contents in a variable.

We'll call this.. page.php

<?php
$content = "Hello World.";
?>

<html>
<head>
<title><?php echo $content ?></title>
</head>
<body>
<?php echo $content ?>
</body>
</html

And I want to put that into a variable by calling a function from another file.

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

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

发布评论

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

评论(2

耀眼的星火 2024-08-28 21:29:56

之前使用 ob_start()包括该文件,以及 ob_get_clean()之后。

Use ob_start() before including the file, and ob_get_clean() after.

迷爱 2024-08-28 21:29:56

PHP 可以使用函数 eval 将任何字符串计算为 PHP 代码;
http://php.net/manual/en/function.eval.php

PHP can evaluate any string as a PHP code with function eval;
http://php.net/manual/en/function.eval.php

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