當前位置: 首頁>>代碼示例>>PHP>>正文


PHP WebRequest::getRequestMethod方法代碼示例

本文整理匯總了PHP中WebRequest::getRequestMethod方法的典型用法代碼示例。如果您正苦於以下問題:PHP WebRequest::getRequestMethod方法的具體用法?PHP WebRequest::getRequestMethod怎麽用?PHP WebRequest::getRequestMethod使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在WebRequest的用法示例。


在下文中一共展示了WebRequest::getRequestMethod方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: handle

 /**
  * Handles request
  * @return mixed true on success, array of errors on handle failure
  * @throws PostFormException
  */
 function handle(WebRequest $request)
 {
     if (!$request->getRequestMethod()->equals($this->getMethod())) {
         throw new PostFormException("Wrong request method");
     }
     $variables = array_replace($request->getPostVars(), $request->getFilesVars());
     $signName = $this->getSignatureFieldName();
     if (!isset($variables[$signName])) {
         throw new PostFormException('Missing signature');
     }
     if (!$this->importSignature($variables[$signName])) {
         throw new PostFormException('Malformed signature');
     }
     if (isset($this->privateValues['referrer'])) {
         if ($this->privateValues['referrer'] != (string) $request->getHttpReferer()) {
             throw new PostFormException('Unexpected referrer `' . $this->privateValues['referrer'] . '`, expected `' . $request->getHttpReferer() . '`');
         }
     }
     foreach ($this->buttons as $id => $callback) {
         if (isset($variables[$id]) && is_callable($callback)) {
             call_user_func($callback, $variables);
             return;
         }
     }
     $this->process($variables);
 }
開發者ID:phoebus,項目名稱:HTML_FormAbstraction,代碼行數:31,代碼來源:PostForm.class.php

示例2: notify500

    /**
     * Notify about the fault
     *
     * @param string $email address to be notified about the fault
     * @param Exception $e uncaught exception that caused application fault
     * @return void
     */
    protected function notify500($email, Exception $e)
    {
        //
        // TODO log this
        //
        $message = <<<EOT
Crash at {$this->request->getHttpUrl()->getHost()}:
{$e->getMessage()}

The request: {$this->request->getHttpUrl()}
Request method: {$this->request->getRequestMethod()}

{$e->getTraceAsString()}
EOT;
        mail($email, PHOEBIUS_SHORT_PRODUCT_NAME . "crash at {$this->request->getHttpUrl()->getHost()} (" . get_class($e) . ")", $message);
    }
開發者ID:phoebius,項目名稱:phoebius,代碼行數:23,代碼來源:SiteApplication.class.php

示例3: match

 function match(WebRequest $request)
 {
     if ($this->method) {
         if ($this->method->getValue() != $request->getRequestMethod()) {
             return;
         }
     }
     $url = $request->getHttpUrl();
     $data = $this->routeData;
     if ($this->pathMatcher) {
         $pathData = $this->pathMatcher->match($url->getVirtualPath());
         if (!is_array($pathData)) {
             return;
         }
         $data = array_merge($data, $pathData);
     }
     $query = $url->getQuery();
     foreach ($this->queryStringRegs as $qsArg => $qsReg) {
         if (isset($query[$qsArg]) && preg_match($qsReg, $query[$qsArg])) {
             $data[$qsArg] = $query[$qsArg];
         } else {
             return;
         }
     }
     return $data;
 }
開發者ID:phoebius,項目名稱:phoebius,代碼行數:26,代碼來源:Route.class.php


注:本文中的WebRequest::getRequestMethod方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。