Smarty::$_tpl_vars – Undefined property – Support for _tpl_vars in Smarty 3 – PHP Versions
I am migrating my old PHP 5.2.14 and Smarty 2.6.19 to PHP 7.3.25 + Smarty 3.1.34. The PHP code base is quite huge and I have used Smarty::_tpl_vars array to access assigned variables. $smarty->assign("myvar","var-value"); $myvar = $smarty->_tpl_vars['myvar']; #this returns "var-value"…