Smarty数组分配给PHP数组

时间:2013-08-06 15:00:55

标签: php arrays smarty

我是Smarty的新人。 我有一个聪明的数组$order_info

如何将值{$order_info.email}分配给PHP字符串?

我希望有人可以帮助我!

解决方案:

{/php}
     {$order_info.email}
{php}

1 个答案:

答案 0 :(得分:0)

根据http://www.smarty.net/docs/en/language.function.assign.tpl,您应该可以运行以下代码:

Smarty模板

{assign var="email" value=$order_info.email}

PHP脚本

// 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;