2006年9月12日火曜日

Smartyテンプレートで直接getやpost、cookieなどの値を参照する


$smartyという特殊変数を利用することで、いちいちphpスクリプト側でassignせず、smartyテンプレート側の記述のみで直接get、post、session、cookieなどの値を参照することができます。






































php

smarty

$_GET[hoge]

{$smarty.get.hoge}

$_POST[hoge]

{$smarty.post.hoge}

$_REQUEST[hoge]

{$smarty.request.hoge}

$_COOKIE[hoge]

{$smarty.cookies.hoge}

$_SESSION[hoge]

{$smarty.session.hoge}

$_ENV[hoge]

{$smarty.env.hoge}

$_SERVER[hoge]

{$smarty.server.hoge}


この機能、これまでずっと知らずいっつもassignしてました。。。

0 件のコメント:

コメントを投稿