Get Smarty

Donate

Paypal

Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

Name

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 の拡張 および 修飾子プラグインの作成 も参照してください。

Comments
No comments for this page.

Advertisement

Sponsors [info]

Sponsors