0

我有类似的东西

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

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

如何实现功能

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

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

4

1 回答 1

0

一种方法是:

ob_start();
include "/home/path/public_html/list.php";
$text = ob_get_clean();
$example['description'] = "print this text: $text";
于 2013-09-27T21:26:29.757 回答