我有一個stdclass對象數組。 如何將它分配給聰明的模板?如何在smarty模板文件中分配對象數組
我試着這樣做:
$smarty->assign('objects', $x->getAllObjects());
但結果卻是一個錯誤:
Catchable fatal error: Object of class Object could not be converted to string
感謝
編輯:我也嘗試:
$smarty->registerObject('objects', $x->getAllObjects());
並在模板文件我所做的:
{foreach from=$objects item=o}
{$o}
{/foreach}
但我得到一個通知:
Notice: Undefined index: objects
,我無法訪問objects
數組中的元素。
請檢查此網址:HTTP:// WWW .smarty.net/docs/en/advanced.features.objects.tpl – 2014-09-26 14:18:30
@hardiksolanki我已經檢查過這個鏈接,但我仍然無法找到一種方法來分配對象數組並從te中訪問它的元素mplate文件。 – Frank 2014-09-26 14:27:45