vote up 4 vote down star

Some guy called one of my Snipplr submissions "crap" because I used if ($_SERVER['REQUEST_METHOD'] == 'POST') instead of if ($_POST)

Checking the request method seems more correct to me because that's what I really want to do. Is there some operational difference between the two or is this just a code clarity issue?

flag

Tell that guy he sucks. – Vinko Vrsalovic Jan 3 '09 at 17:46

6 Answers

vote up 11 vote down check

well -- they don't do the same thing, really.

$_SERVER['REQUEST_METHOD']

contains the request method (surprise).

$_POST

contains any post data.
It's possible for a POST request to contain no POST data.

Me, I check the request method -- I actually never thought about testing the $_POST array. I check the required post fields, though. So an empty post request would give the user a lot of error messages. Which makes sense to me.

link|flag
vote up 0 vote down

Personally I do it the way you have specified

if ($_SERVER['REQUEST_METHOD'] == 'POST')

because surely if you do

if ($_POST)

you would have to check that it is declared first or handle the potential undefined error in some other way.

link|flag
vote up -3 vote down

They both work the same way, but $_POST should be used as it is cleaner. You can add isset() to it to check it exists.

link|flag
vote up 5 vote down

They are both correct. Personally I prefer your approach better for its verbosity but it's really down to personal preference.

Off hand, running if($_POST) would not throw an error - the $_POST array exists regardless if the request was sent with POST headers. An empty array is cast to false in a boolean check.

link|flag
vote up 1 vote down

if ($_SERVER['REQUEST_METHOD'] == 'POST') is the correct way, you can send a post request without any post data.

link|flag
vote up 0 vote down

It's really a 6 of one, a half-dozen of the other situation.

The only possible argument against your approach is $_SERVER['REQUEST_METHOD'] == 'POST' may not be populated on certain web-servers/configuration, whereas the $_POST array will always exist in PHP4/PHP5 (and if it doesn't exist, you have bigger problems (-:)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.