システム側が未実装の場合に条件文などを仮実装しておく場合に使うの。
システム側のファイルを汚さないようにするのが目的。
基本、予約変数($smarty)で賄う。
##{$smarty.get.hoge}
//www.example.com/index.php?hoge=foo
URLからhogeの値を取得
$_GET['hoge']と同義
##{$smarty.post.page}
フォームから送信された変数 hogeの値を取得
$_POST['hoge']と同義
Go to list of users who liked
More than 5 years have passed since last update.
システム側が未実装の場合に条件文などを仮実装しておく場合に使うの。
システム側のファイルを汚さないようにするのが目的。
基本、予約変数($smarty)で賄う。
##{$smarty.get.hoge}
//www.example.com/index.php?hoge=foo
URLからhogeの値を取得
$_GET['hoge']と同義
##{$smarty.post.page}
フォームから送信された変数 hogeの値を取得
$_POST['hoge']と同義
Register as a new user and use Qiita more conveniently
Go to list of users who liked