Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was always wondering why in PHP array function we have $needle before the $haystack and vice versa in string functions. E.g.:

mixed array_search ( mixed $needle , array $haystack [, bool $strict = false ] )
bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )

string strstr ( string $haystack , mixed $needle [, bool $before_needle = false ] )
int strpos ( string $haystack , mixed $needle [, int $offset = 0 ] )

Is it another PHP sadness or there is some sort of logical explanation for this? The thing is I often can't remember which one is in what order - maybe that logic beyond this will help.

share|improve this question
4  
This is another PHP sadness! Even in array functions no specific convension was not followed. see the manual of array_map and array_filter – shiplu.mokadd.im Dec 23 '12 at 10:56
1  
Yip, just one of those PHP things, very little "formalization". Things like this always bug me. My worst one yet is nl2br(). It's like a teenage girl named that function – eskimo Dec 23 '12 at 10:57
1  
Functions like strstr are inspired by C and the parameter order matches that. Consistency with the rest of PHP was clearly less important then. (Get a proper IDE with parameter hinting to take care of this problem.) – DCoder Dec 23 '12 at 11:03

closed as not constructive by Mat, Dr.Molle, Ken, Lightness Races in Orbit, DCoder Dec 23 '12 at 10:58

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 1 down vote accepted

It is a php sadness that was introduced in the early versions of the language and never corrected to avoid such a BC breack. It is the first reason people invoke when they criticise php

share|improve this answer

Because PHP is a hotch-potch and the library is inconsistent.

No other reason.

share|improve this answer

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