コード例 #1
0
ファイル: Exception.php プロジェクト: magic-jam/http
 public function getHTTPStatusString()
 {
     return Constants::text_for_status($this->status);
 }
コード例 #2
0
ファイル: http.php プロジェクト: jaz303/zing
 protected function send_headers()
 {
     header(Constants::PROTOCOL_VERSION . " " . $this->status . Constants::text_for_status($this->status));
     foreach ($this->headers as $h) {
         header($h);
     }
 }