codecamp

Smarty成员方法:append()

Name

append() — 把值追加到数组。

说明

void append(mixed var);
void append(string varname,
            mixed var,
            bool merge);

在追加的时候,字符串将转换成数组的值。你可以显式传递键值对,或是联合数组。如果设置第三个参数为true时,该值将合并到原有数组上而并非追加。

Technical Note

The merge parameter respects array keys, so if you merge two numerically indexed arrays, they may overwrite each other or result in non-sequential keys. This is unlike the PHP array_merge()function which wipes out numerical keys and renumbers them.

Example 14.4. append()

<?php
// 直接使用和assign()差不多
$smarty->append('foo', 'Fred');
// 这里,foo已经变成了模板中的一个数组。
$smarty->append('foo', 'Albert');

$array = array(1 => 'one', 2 => 'two');
$smarty->append('X', $array);
$array2 = array(3 => 'three', 4 => 'four');
// 下面会增加第二个X数组的元素
$smarty->append('X', $array2);

// 传递联合数组
$smarty->append(array('city' => 'Lincoln', 'state' => 'Nebraska'));
?>

参见 appendByRef()assign() 和 getTemplateVars()

Smarty成员方法:addTemplateDir()
Smarty成员方法:appendByRef()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

I.Smarty基础

1.Smart是什么?

II.Smarty模板设计师篇

6.Smarty复合修饰器

9.Smarty配置文件

10.Smarty调试控制台

III. 程序开发者篇

11. Smarty字符集编码

12.Smarty常量

13.Smarty成员变量

14.Smarty成员方法

17.Smarty高级特性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }