PHP在变量中保存函数的输出?

时间:2012-06-06 04:02:46

标签: php html

我正在努力实现这个目标:

$productlist= $tpl->draw( 'products' );

稍后我想在其他文件上回复它:

而$ tpl-> draw('products')显示一些输出,例如

<div id="productlist>
include("products");
</div>

2 个答案:

答案 0 :(得分:0)

您可以使用会话变量将数据公开给另一个脚本,或者从数据库或平面文件中存储和检索。

答案 1 :(得分:0)

试试这个

$productlist= $tpl->draw( 'products' );

//类文件

class drawing{

  function draw($type) {

  $str='';

   if($type=='')
    $type='default'

    $ids=$type.'list';

    $str="<div id='$ids'> include('$type') </div>";
    return $str;
 }
}