method([$upper = FALSE])
Parameters: |
|
---|---|
Returns: |
HTTP request method |
Return type: |
string |
Returns the $_SERVER['REQUEST_METHOD']
, with the option to set it in uppercase or lowercase.
echo $this->input->method(TRUE); // Outputs: POST echo $this->input->method(FALSE); // Outputs: post echo $this->input->method(); // Outputs: post
Please login to continue.