当我在后端写这段代码时,我得到 bool(false)。我明白这意味着没有类型' page / html'的块,但是当我在后端时如何获得前端活动块?
$layout = Mage::app()->getLayout()->getBlock('page/html');
Zend_Debug::dump($layout);
答案 0 :(得分:0)
试试这个:
$block = Mage::app()->getLayout()->createBlock('page/html');
Zend_Debug::dump($block);