日本語:Function.check form key
From phpBB Development Wiki
(Redirected from 日本語:Check form key)
check_form_key -- フォームキーを確認する。
Contents |
説明
boolean check_form_key ( string $form_name [, int $timespan [, string $return_page [, bool $trigger ]]] )
パラメータ
| パラメータ | 必須 | デフォルト | 使用方法 |
|---|---|---|---|
| form_name | はい | ||
| timespan | いいえ | false | |
| return_page | いいえ | '' | |
| trigger | いいえ | false |
例
例 #1 確認のみ
if (!check_form_key($form_key))
{
trigger_error($user->lang['FORM_INVALID']);
}
例 #2 時間制限
// Give the user 30 seconds to finish this form
if (!check_form_key($form_key, 30))
{
trigger_error($user->lang['FORM_INVALID']);
}
例 #3 トリガーエラー
check_form_key($form_key, false, '', true);

