DEV Community

Discussion on: Debate: Symfony VS Laravel

 
yellow1912 profile image
yellow1912

Php has come a long way. There are still quirks and inconsistencies in many places, but there have been fixes to address them. If you used php in the past, it's probably php5 or older. Php7 and the upcoming 8 added huge performance improvement, strict typed checks, and many other things. Scripting language wise, php is one of the fastest in term of performance. Its nature also allows it to be great fit for serverless architecture as well.

If you use go, php now has the swoole extension that brings coroutine to php land. The syntax is very similar to go, and the raw performance is comparable to go.

For people still sticking with php or want to learn php, this is a great time. One should look into Symfony even if it's just to learn how a properly structure PHP application may look like. Projects like WordPress is not a great example of proper PHP and should not be used to judge the language.