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.


nl2br(). It's like a teenage girl named that function – eskimo Dec 23 '12 at 10:57strstrare 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