diff options
author | Mike Funk <mfunk@xulonpress.com> | 2012-03-08 15:01:40 +0100 |
---|---|---|
committer | Mike Funk <mfunk@xulonpress.com> | 2012-03-08 15:01:40 +0100 |
commit | 98626f1b4b3002c64364d82080246b91aa5e4bd2 (patch) | |
tree | 5216da502b1d077570832417f4253cd45e55da70 /system/core/Input.php | |
parent | 7f42d060fb828bfb0bd857ad1a17b91070e52628 (diff) | |
parent | 5d27c43d29fc049497010ea62ac7877a64bfed92 (diff) |
Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into feature/form_val_config
Diffstat (limited to 'system/core/Input.php')
-rwxr-xr-x | system/core/Input.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/system/core/Input.php b/system/core/Input.php index ee15f4013..5a4659a5a 100755 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -699,6 +699,23 @@ class CI_Input { return (php_sapi_name() === 'cli' OR defined('STDIN')); } + // -------------------------------------------------------------------- + + /** + * Get Request Method + * + * Return the Request Method + * + * @param bool uppercase or lowercase + * @return bool + */ + public function method($upper = FALSE) + { + return ($upper) + ? strtoupper($this->server('REQUEST_METHOD')) + : strtolower($this->server('REQUEST_METHOD')); + } + } /* End of file Input.php */ |