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

アウトプットフィルタプラグイン

アウトプットフィルタプラグインは、テンプレートが読み込まれて実行された後 (しかしその出力が表示される前)にテンプレートの出力を操作します。

string smarty_outputfilter_name( $template_output,  
  &$smarty);  
string $template_output;
object &$smarty;
 

アウトプットフィルタの第1パラメータは、処理を行うテンプレート出力です。 第2パラメータは、プラグインを呼び出したSmartyのインスタンスです。 このプラグインは戻り値に、修正されたテンプレート出力を返すようにして下さい。

Example 16.9. アウトプットフィルタプラグイン


<?php
/*
 * Smarty plugin
 * -------------------------------------------------------------
 * File:     outputfilter.protect_email.php
 * Type:     outputfilter
 * Name:     protect_email
 * Purpose:  email アドレスの @ を %40 に変換し、
 *           スパムボットからほんの少しだけ保護する
 * -------------------------------------------------------------
 */
 function smarty_outputfilter_protect_email($output, &$smarty)
 {
     return preg_replace('!(\S+)@([a-zA-Z0-9\.\-]+\.([a-zA-Z]{2,3}|[0-9]{1,3}))!',
                         '$1%40$2', $output);
 }
?>

     

register_outputfilter() および unregister_outputfilter() も参照してください。

Comments
No comments for this page.

Advertisement

Sponsors [info]

Sponsors