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


PHP WebRequest::getResponse方法代碼示例

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


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

示例1: handle500

    /**
     * The failover stub. Handles the application fault
     *
     * @param Exception $e uncaught exception that caused fault
     * @return void
     */
    protected function handle500(Exception $e)
    {
        $response = $this->request->getResponse();
        $response->setStatus(new HttpStatus(HttpStatus::CODE_500));
        $clname = get_class($e);
        $out = <<<EOT
\t<h1>Internal Server Error</h1>
\t{$clname} : {$e->getMessage()}
\t<hr />
\t<h2>Call Stack</h2>
\t<pre>{$e->getTraceAsString()}</pre>
EOT;
        $response->write($out)->finish();
        if (defined('BUGS_EMAIL')) {
            $this->notify500(BUGS_EMAIL, $e);
        }
    }
開發者ID:phoebius,項目名稱:phoebius,代碼行數:23,代碼來源:SiteApplication.class.php

示例2: processResult

 /**
  * Runs the proccess of handing the action method result
  *
  * @param IActionResult $actionResult
  *
  * @return void
  */
 protected function processResult(IActionResult $actionResult)
 {
     $actionResult->handleResult($this->request->getResponse());
 }
開發者ID:phoebius,項目名稱:phoebius,代碼行數:11,代碼來源:ActionBasedController.class.php

示例3: WebRequest

<?php

$url = 'http://www.360doc.com/content/15/0918/21/12146850_499980507.shtml#';
$request = new WebRequest($url);
echo '<pre>';
$obj = $request->getResponse();
//var_dump($obj);
//	echo $obj->content;
class WebRequest
{
    var $url = '';
    var $host = '';
    var $port = 80;
    var $path = '/';
    var $method = '';
    var $postdata = '';
    var $cookies = array();
    var $accept = 'text/xml,application/xml,application/xhtml+xml,text/html,text/plain,image/png,image/jpeg,image/gif,*/*';
    var $accept_language = 'zh-cn';
    var $accept_encoding = 'gzip';
    //	    var $user_agent            = 'ErikClient/1.0';
    var $user_agent = 'Mozilla/5.0 (Windows NT 5.1; rv:22.0) Gecko/20100101 Firefox/22.0';
    var $use_gzip = false;
    var $username;
    var $password;
    var $timeout = 20;
    /**
     * 構造函數
     * @public
     * @param <string> $url 請求地址
     * @param <string> $method 請求方式
開發者ID:shapemyself,項目名稱:testRepo,代碼行數:31,代碼來源:testgetcontent.php


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