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_prefilter() — プリフィルタを動的に登録します。
void register_prefilter(mixed function);
テンプレートをコンパイルする前に実行する、 プリフィルタ を動的に登録します。プリフィルタ関数の定義の仕方は、プリフィルタ の項を参照して下さい。
PHP 関数のコールバック function
は、次のいずれかとなります。
関数名を含んだ文字列
array(&$object, $method)
形式の配列
(&$object
はオブジェクトの参照で、
$method
はメソッド名を含む文字列)
array($class, $method)
という形式の配列
($class
はクラス名であり、
$method
はクラスのメソッド)
選択したコールバック function
が
array(&$object, $method)
形式である場合は、
同じ $method
を持つクラスのインスタンスをひとつだけ登録できます。
そのような場合は、最後に登録されたコールバック function
のみが用いられます。
unregister_prefilter()
、
register_postfilter()
、
register_ouputfilter()
、
load_filter()
、
$autoload_filters
および
アウトプットフィルタ
も参照してください。