PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

register_function | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

register_function

void register_function(string name, string impl)

Use this to dynamically register template function plugins. Pass in the template function name, followed by the PHP function name that implements it.

Example 13-22. register_function

$smarty->register_function("date_now", "print_current_date");

function print_current_date ($params) {
    extract($params);
    if(empty($format))
        $format="%b %e, %Y";
    echo strftime($format,time());
}

// now you can use this in Smarty to print the current date: {date_now}
// or, {date_now format="%Y/%m/%d"} to format it.
忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「register_function」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | register_function」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: