当前位置: 首页>>代码示例>>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;未经允许,请勿转载。