如何输入命令include(“/ path/public_html/file.php”);变量里面?

时间:2013-09-27 21:21:40

标签: include

我有类似

的东西

$example['description']="print this text: *** " ;

而不是 * 我喜欢包含一个文件/home/path/public_html/list.php,其中存储了html文本(php格式化)。

如何实现功能

include ("/home/path/public_html/list.php");

在变量里面?谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

一种方法是:

ob_start();
include "/home/path/public_html/list.php";
$text = ob_get_clean();
$example['description'] = "print this text: $text";