评估页面和存储在变量中?
我想获取一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
之前使用
ob_start()
包括该文件,以及ob_get_clean()
之后。Use
ob_start()
before including the file, andob_get_clean()
after.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