Recent posts with #backend

From Chaos to Craft: The Evolution of PHP Frameworks

Early 2000s: No frameworks, just raw PHP.
2005: Symfony introduces reusable components.
2006: CodeIgniter and Zend bring MVC mainstream.
2011: Laravel makes PHP elegant again.
2020s: Async frameworks like Octane, Swoole & RoadRunner reshape performance.

PHP grew because of frameworks, not despite them.

Which one changed how you build software?

#PHP #Laravel #Symfony #WebDev #Backend #programming


image

53

PHP Array Unpacking

With array unpacking, you can merge two or more arrays. In some cases, this may be an alternative to the array_merge() function. Since PHP 8.1, you can merge array that have string key.

You can unpack an array using the ... operator.

#php #backend #tip
image

36