本文整理匯總了PHP中Vars::post方法的典型用法代碼示例。如果您正苦於以下問題:PHP Vars::post方法的具體用法?PHP Vars::post怎麽用?PHP Vars::post使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Vars
的用法示例。
在下文中一共展示了Vars::post方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: setParameters
/**
* Set the $post and $get variables, since they will
* be set to the same properties in the CodonModule class
*
*/
public static function setParameters()
{
self::$post = new stdClass();
self::$get = new stdClass();
foreach ($_POST as $key => $value) {
self::$post->{$key} = self::cleaned($value);
}
foreach ($_GET as $key => $value) {
self::$get->{$key} = self::cleaned($value);
}
foreach ($_REQUEST as $key => $value) {
self::$request->{$key} = self::cleaned($value);
}
}
示例2: init
/**
* 本體実行前にクラスを初期化する。
*/
static function init()
{
//GET、POST、COOKIEの初期化
self::$post = $_POST;
self::$get = $_GET;
self::$cookie = $_COOKIE;
if (get_magic_quotes_gpc()) {
self::$post = map('stripslashes', self::$post);
self::$get = map('stripslashes', self::$get);
self::$cookie = map('stripslashes', self::$cookie);
}
self::$get = map('rawurldecode', self::$get);
if (ini_get('mbstring.encoding_translation')) {
$encode = ini_get('mbstring.internal_encoding');
$proc = "return mb_convert_encoding(\$str, 'UTF-8', '{$encode}');";
self::$post = map(create_function('$str', $proc), self::$post);
}
}