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


PHP HTTP::getMessageForCode方法代码示例

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


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

示例1: display

 public function display()
 {
     $this->requireSettings();
     $responsecode = 200;
     if ($this->data['errorcode'] > 0) {
         $responsecode = $this->data['errorcode'];
     } elseif ($this->data['statuscode'] > 0) {
         $responsecode = $this->data['statuscode'];
     } elseif ($this->data['errornumber'] > 0) {
         $responsecode = $this->data['errornumber'];
     }
     $displaydata = $this->prepareResponseStructure();
     if ($responsecode != 200) {
         $http = new HTTP();
         $message = $http->getMessageForCode($responsecode);
         header("HTTP/1.0 " . $responsecode . " " . $message);
     }
     header('Content-Type: application/json; charset=utf-8');
     echo json_encode($displaydata);
     return true;
 }
开发者ID:gelembjuk,项目名称:webapp,代码行数:21,代码来源:JSON.php

示例2: display

 public function display()
 {
     $html = $this->getHTML();
     if (!$this->options['headerssent']) {
         if ($this->options['statuscode'] > 0 && $this->options['statuscode'] != 200) {
             $http = new HTTP();
             $message = $http->getMessageForCode($this->options['statuscode']);
             header("HTTP/1.0 " . $this->options['statuscode'] . " " . $message);
         }
         header('Content-Type: text/html; charset=utf-8');
     }
     echo $html;
     return true;
 }
开发者ID:gelembjuk,项目名称:webapp,代码行数:14,代码来源:HTML.php


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