मेरे पास यह नियंत्रक है:
...
public function insertAction() {
$something = 'testcase';
$this->loadLayout();
$this->_title($this->__("the title"));
$this->renderLayout();
}
...
मैं $something
अपने .phtml दस्तावेज़ में पहुँचना चाहूँगा, मैं यह कैसे करूँ? (या इसे दूसरे तरीके से रखने के लिए: मैं $something
अपनी .phtml फ़ाइल में कैसे पहुंच सकता हूं )
$block->assign($var)
लेकिनphtml
फ़ाइल में कैसे पुनर्प्राप्त किया जाएगा ?