?
このドキュメントでは、 php中國語ネットマニュアル リリース
Insert plugins are used to implement functions that are invoked by
{insert}
tags in the template.
插入插件用來執(zhí)行在模板中被
{insert}
標記調(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ù)的第一個參數(shù)是一個傳遞給插入動作的屬性集合數(shù)組。每一種方式都可以直接獲取那些屬性值,例如$params['start'],或用extract($params)將屬性導入符號表中。
The insert function is supposed to return the result which will be substituted
in place of the
{insert}
tag in the template.
插入函數(shù)將會返回某值,該值將在模板中的
{insert}
標記處被替換。
Example 16-11. insert plugin插入插件
|