当前位置: 首页>>代码示例>>PHP>>正文


PHP wbRequest::getVar方法代码示例

本文整理汇总了PHP中wbRequest::getVar方法的典型用法代码示例。如果您正苦于以下问题:PHP wbRequest::getVar方法的具体用法?PHP wbRequest::getVar怎么用?PHP wbRequest::getVar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在wbRequest的用法示例。


在下文中一共展示了wbRequest::getVar方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: confirmAuthKey

 /**
  * Confirm an authorisation key is valid
  *
  * See description of xarSecGenAuthKey for information on
  * this function
  *
  * @access public
  * @param string authIdVarName
  * @return bool true if the key is valid, false if it is not
  * @throws FORBIDDEN_OPERATION
  * @todo bring back possibility of time authorized keys
  */
 function confirmAuthKey($modName = NULL, $authIdVarName = 'authid')
 {
     if (!isset($modName)) {
         list($modName) = wbRequest::getController();
     }
     $authid = wbRequest::getVar($authIdVarName);
     $rands = wbSession::getVar('rand');
     $now = time();
     srand((double) microtime() * 1000000);
     // convert single rand to array of "timestamp-rand()" strings
     if (!is_array($rands)) {
         $rands = array();
         // session integrity: only keep most recent 64 values
         $rands = array_slice($rands, -64);
         wbSession::setVar('rand', $rands);
     }
     // needed in foreach to expire old rand values
     $age = wbConfig::get('Session.InactivityTimeout') * 60;
     // convert minutes to seconds
     // loop through the rands array to find a match
     foreach ($rands as $r => $rnd) {
         list($timestamp, $rndval) = explode('-', $rnd, 2);
         // ignore and get rid of random values older than session activity timeout
         if ($now - $age > $timestamp) {
             unset($rands[$r]);
             continue;
         }
         // Regenerate static part of key
         $partkey = $rndval . strtolower($modName);
         if (md5($partkey) == $authid) {
             // Match - get rid of it and leave happy
             unset($rands[$r]);
             // session integrity: only keep most recent 64 values
             $rands = array_slice($rands, -64);
             wbSession::setVar('rand', $rands);
             return true;
         }
     }
     throw new Exception("<p>Operasi yang anda coba lakukan tidak diperkenankan dalam kondisi ini.</p>Anda mungkin telah menekan tombol Back atau Reload pada browser dan mencoba kembali operasi yang tidak boleh diulang, atau cookie tidak diaktifkan pada browser anda");
     return false;
 }
开发者ID:rayminami,项目名称:cc_webservice,代码行数:53,代码来源:security.php


注:本文中的wbRequest::getVar方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。