Exemple #1
0
 public function getHTTPStatusString()
 {
     return Constants::text_for_status($this->status);
 }
Exemple #2
0
 protected function send_headers()
 {
     header(Constants::PROTOCOL_VERSION . " " . $this->status . Constants::text_for_status($this->status));
     foreach ($this->headers as $h) {
         header($h);
     }
 }