What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
assignByRef() — 引用赋值
void assignByRef(string varname,
mixed var);
和
assign()
一样,赋值到模板,但以引用的方式来传递值。
在PHP5中,assignByRef()
在大部分时候都是没有必要的。只当你希望在模板中可以修改某个PHP数组的值,才有可能会使用到assignByRef()
,当然更好的方法是通过传递对象、改变对象的成员变量来达到目的。
Example 14.7. assignByRef()
<?php // 传递键值对 $smarty->assignByRef('Name', $myname); $smarty->assignByRef('Address', $address); ?>
参见
assign()
,
clearAllAssign()
,
append()
,
{assign}
和
getTemplateVars()
.