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:
unregisterFilter() — 動的にフィルタの登録を解除する
void unregisterFilter(string type,
mixed callback);
この函数は、フィルタの登録を動的に解除します。 次のパラメータを使います。
type
にはフィルタの型を定義します。使える値は "pre"、"post"、"output" および "variable" です。
PHP 関数のコールバック function
は、次のいずれかとなります。
関数名を含んだ文字列
array(&$object, $method)
形式の配列
(&$object
はオブジェクトの参照で、
$method
はメソッド名を含む文字列)
array($class, $method)
という形式の配列
($class
はクラス名であり、
$method
はクラスのメソッド名)
registerFilter()
も参照ください。