本文整理匯總了PHP中fRequest::put_delete方法的典型用法代碼示例。如果您正苦於以下問題:PHP fRequest::put_delete方法的具體用法?PHP fRequest::put_delete怎麽用?PHP fRequest::put_delete使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類fRequest
的用法示例。
在下文中一共展示了fRequest::put_delete方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: unfilter
/**
* Returns `$_GET`, `$_POST` and `$_FILES` and the `PUT`/`DELTE` post data to the state they were at before ::filter() was called
*
* @internal
*
* @return void
*/
public static function unfilter()
{
if (self::$backup_get === array()) {
throw new fProgrammerException('%1$s can only be called after %2$s', __CLASS__ . '::unfilter()', __CLASS__ . '::filter()');
}
$_FILES = array_pop(self::$backup_files);
$_GET = array_pop(self::$backup_get);
$_POST = array_pop(self::$backup_post);
self::$put_delete = array_pop(self::$backup_put_delete);
}