我有类似
的东西 $example['description']="print this text: *** " ;
而不是 * 我喜欢包含一个文件/home/path/public_html/list.php,其中存储了html文本(php格式化)。
如何实现功能
include ("/home/path/public_html/list.php");
在变量里面?谢谢你的帮助。
答案 0 :(得分:0)
一种方法是:
ob_start();
include "/home/path/public_html/list.php";
$text = ob_get_clean();
$example['description'] = "print this text: $text";