0
我試圖做到這一點:PHP將函數的輸出保存在變量中?
$productlist= $tpl->draw('products');
後來我想呼應它的其他一些文件:
而$ tpl->畫(「產品」)中顯示的一些輸出例如
<div id="productlist>
include("products");
</div>
我試圖做到這一點:PHP將函數的輸出保存在變量中?
$productlist= $tpl->draw('products');
後來我想呼應它的其他一些文件:
而$ tpl->畫(「產品」)中顯示的一些輸出例如
<div id="productlist>
include("products");
</div>
您可以使用會話變量將數據公開到另一個腳本中,或者從數據庫或平面文件中存儲和檢索數據。
試試這個
$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;
}
}
究竟什麼是你的問題? – dpk2442
$ tryt ='