this post was submitted on 12 Feb 2026
67 points (100.0% liked)

Programming

26579 readers
107 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] SlurpingPus@lemmy.world 0 points 2 months ago* (last edited 2 months ago) (2 children)

Idk, PHP chugs on splendidly with arrays that combine both arrays and maps. I regret to say that PHP is considerably faster than some better languages like Python and Ruby, and arrays are the workhorse structure there.

(Like, PHP's approach to FastCGI is that the script's runtime is destroyed after every request and then started anew for the next one, and it still outperforms Python's always-on approach. Of mainstream languages, only Node can compete.)

[–] FizzyOrange@programming.dev 1 points 2 months ago (1 children)

Right but it's fast(ish) in spite of that. It would still be better with separate types.

[–] SlurpingPus@lemmy.world 1 points 2 months ago* (last edited 2 months ago)

Weird choice of lifestyle to complain about the two fastest scripting languages being ‘fast-ish’. While you complain, the world is using Lua for embedded scripts and game programming, and PHP for the web.

People straight up write libraries in Lua instead of C, because the performance difference is unnoticeable. But apparently it's only ‘fastish’.

[–] Vulwsztyn@programming.dev 0 points 2 months ago (1 children)

any benchmarks to support this claim?

[–] SlurpingPus@lemmy.world 0 points 2 months ago

Feel free to look them up, I'm not preventing you from doing that.

I've had my own field experience with evaluating PHP vs Python, and know who came out on top.