this post was submitted on 23 Oct 2023
570 points (96.3% liked)
Programmer Humor
32426 readers
668 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
stdClass is for objects. I'm talking about maps. I guess you could use stdClass for maps too, but that feels weird.
If you read the docs for
json_decode
, the default behavior is to operate with stdClass - I too prefer working with associative arrays because of their power but... that kind of just reinforces how useful they are. PHP can give you the full Java class system if you want.. it's just a pain and useless in most circumstances so we all just toss around associative arrays.