Commit 5bb5adcf authored by Taylor Otwell's avatar Taylor Otwell

Added Request::spoofed method.

parent d0fafd13
......@@ -69,14 +69,24 @@ class Request {
/**
* Get the request method.
*
* The request method may be spoofed if a hidden "REQUEST_METHOD" POST element
* is present, allowing HTML forms to simulate PUT and DELETE requests.
*
* @return string
*/
public static function method()
{
return (array_key_exists('REQUEST_METHOD', $_POST)) ? $_POST['REQUEST_METHOD'] : $_SERVER['REQUEST_METHOD'];
return (static::spoofed()) ? $_POST['REQUEST_METHOD'] : $_SERVER['REQUEST_METHOD'];
}
/**
* Determine if the request method is being spoofed by a hidden Form element.
*
* Hidden form elements are used to spoof PUT and DELETE requests since
* they are not supported by HTML forms.
*
* @return bool
*/
public static function spoofed()
{
return array_key_exists('REQUEST_METHOD', $_POST);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment