?
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
Insert plugins are used to implement functions that are invoked by
{insert}
tags in the template.
插入插件用來執(zhí)行在模板中被
{insert}
標(biāo)記調(diào)用的函數(shù) 。
string smarty_insert_
name
(array $params, object &$smarty)
The first parameter to the function is an associative array of attributes passed
to the insert. Either access those values directly, e.g. $params['start'] or use extract($params) to import them into the symbol table.
函數(shù)的第一個(gè)參數(shù)是一個(gè)傳遞給插入動(dòng)作的屬性集合數(shù)組。每一種方式都可以直接獲取那些屬性值,例如$params['start'],或用extract($params)將屬性導(dǎo)入符號(hào)表中。
The insert function is supposed to return the result which will be substituted
in place of the
{insert}
tag in the template.
插入函數(shù)將會(huì)返回某值,該值將在模板中的
{insert}
標(biāo)記處被替換。
Example 16-11. insert plugin插入插件
|