我是Smarty的新人。
我有一个聪明的数组$order_info
如何将值{$order_info.email}
分配给PHP字符串?
我希望有人可以帮助我!
解决方案:
{/php}
{$order_info.email}
{php}
答案 0 :(得分:0)
根据http://www.smarty.net/docs/en/language.function.assign.tpl,您应该可以运行以下代码:
{assign var="email" value=$order_info.email}
// First fetch the template!
$whole_page = $smarty->fetch('index.tpl');
// Then get the variable:
$email = $smarty->getTemplateVars('email');
echo "The email in a PHP variable: " . $email;