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:
register_modifier() — 変数の修飾子プラグインを動的に登録します。
void register_modifier(string name,
mixed impl);
パラメータには、変数の修飾子名とそれを実装するPHPのユーザー定義関数名を渡します。
PHP 関数のコールバック function
は、次のいずれかとなります。
関数名を含んだ文字列
array(&$object, $method)
形式の配列
(&$object
はオブジェクトの参照で、
$method
はメソッド名を含む文字列)
array($class, $method)
という形式の配列
($class
はクラス名であり、
$method
はクラスのメソッド)
Example 13.24. register_modifier()
<?php // phpのstripslashes関数を、変数の修飾子として使用します $smarty->register_modifier('ss', 'stripslashes'); ?>
テンプレートでは、ss
を使用してスラッシュを取り除きます。
<?php {$var|ss} ?>
unregister_modifier()
、
register_function()
、
修飾子、
プラグインによる Smarty の拡張
および
修飾子プラグインの作成
も参照してください。