public function get_httpMethod()
 {
     if ($this->httpMethod === null) {
         $this->httpMethod = php_Web::getMethod();
         if ($this->httpMethod === null) {
             $this->httpMethod = "";
         }
     }
     return $this->httpMethod;
 }
Esempio n. 2
0
 static function get_http_method()
 {
     return php_Web::getMethod();
 }