0

私は次のようなものを持っています

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

*の代わりに、html テキスト (php 形式) が格納されているファイル /home/path/public_html/list.php を含めるのが好きです。

機能の実装方法

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

変数の中に?ご協力ありがとう御座います。

4

1 に答える 1

0

1つの方法は次のとおりです。

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 に答える