this post was submitted on 16 Jun 2023
76 points (100.0% liked)
Programming
13361 readers
6 users here now
All things programming and coding related. Subcommunity of Technology.
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It's written using Symphony framework and seems to be using the latest best practice. Nothing to worry about here. PHP has its warts, which are being addressed since PHP 7.x. Modern frameworks like Symphony go even further by encouraging best practices when developing PHP WebApps, unlike the dark old days of PHP WebApps full of SQL injections and XSS issues (still is though in the WordPress plugins ecosystem).
I'm mostly a Python guy and used to look down on PHP, but changed my tune since the release of PHP 7.x. If Python has JIT half as good as PHP these days, I would die happy.
There's still lots of problems with php like the type system exists now, but doesn't let you put types on containers (arrays, hashmaps etc) so you still can't use the type system to model your app in a way that invalid states throw compiler errors. And it's certainly not ever going to be an algebraic type system. Nothing past the basics make it into php.
They're trailing behind in every way. Have you ever looked at a php feature and went "oh god, I want that!"?
I don't use PHP enough to comment about its type system, but at the very least it's no longer a horrible language anymore. If for some reason you are forced to use PHP to greenfield a new project, at least you don't have to worry too much about basic stuff anymore.
If there is one PHP feature I absolutely want, it's the blazing fast JIT which put other interpreted languages to shame.