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


PHP WebRequest::getHttpUrl方法代码示例

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


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

示例1: 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

示例2: sign

 /**
  * Signs the form. This method may be overridden to import fields to be signed, just call Form::setHiddenValue()
  * @return Form
  */
 function sign(WebRequest $request)
 {
     Assert::isFalse($this->isSigned(), 'form already signed');
     $this->privateValues['referrer'] = (string) $request->getHttpUrl();
     $this->addControl(FormControl::hidden($this->getSignatureFieldName(), $this->exportSignature()));
     $this->signed = true;
     return $this;
 }
开发者ID:phoebus,项目名称:HTML_FormAbstraction,代码行数:12,代码来源:PostForm.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

示例4:

 function __construct(RouteData $routeData, WebRequest $webRequest)
 {
     parent::__construct('Cannot dispatch ' . $webRequest->getHttpUrl()->getVirtualPath() . ' using route data: ' . print_r($routeData, true));
 }
开发者ID:phoebius,项目名称:phoebius,代码行数:4,代码来源:DispatchException.class.php


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