Lives of elePHPant: the story of Flexy

Lives of elePHPant: the story of Flexy The title of ‘oldest elephpant’ is sticking with our beloved ‘Trisaieul’, the first elephpant, also known as the grand-father. The title of the youngest elephpant, on the other hand, changes as new generations of elephpants appear in the world: at one point of their life, every elephpant was […]

Null safe operator in practice

Null safe operator in practice Null-safe operator has been added to PHP 8.1: it is a new object operator that prevents a Fatal error, and its following execution stop, when calling a method or a property on the null value. It has a high appeal, given that it is called ‘safe’ and it reduces the […]

Join the Exakat Community on Discord

Welcome to the Exakat Community! Unleash the Power of PHP Code Analysis Together! Hello PHP enthusiasts, developers, and elePHPants families! We’re thrilled to extend a warm invitation to join the Exakat Community on our vibrant Discord server. If you’re passionate about PHP, code quality, and continuous improvement, this is the perfect space for you. What […]

Smooth migration from array to object

Smooth migration from array to object I still need a smooth migration from array to object. There are a good number of arrays that are acting like objects in my source code. I have read (here, here) and written about the advantages of replacing arrays with objects in PHP. They are significant: better performance, less […]

Smooth migration from array to object

Smooth migration from array to object in PHP

Smooth migration from array to object I still need a smooth migration from array to object. There are a good number of arrays that are acting like objects in my source code. I have read (here, here) and written about the advantages of replacing arrays with objects in PHP. They are significant: better performance, less […]

PHP Framework list

PHP frameworks A curated list of 89 PHP frameworks. Contributing See CONTRIBUTING, to add or update a listing. PHP Framework list In alphabetical order. A Agavi : Agavi is a powerful, scalable PHP5 application framework that follows the MVC paradigm Aura Advanced tools for advanced applications. B Banshee : the secure PHP framework. B2evolution : […]

array_filter() versus Loop Condition Checks

https://www.php.net/array_filter

array_filter() versus Loop Condition Checks Optimizing your code for performance is important, especially when dealing with large arrays or complex data structures. One common dilemma developers face is whether to use array_filter() to preprocess an array before a loop or to check a condition inside the loop and skipping the unwanted values. In this blog […]

Array, classes and anonymous classes memory usage

Printing press characters in their boxes

I have been working with a code base that uses a lot of arrays as hashes recently. This is a style that I am confortable with, as I do enjoy PHP arrays : flexible, powerful, versatile. Who don’t like them? Yet, I keep hearing that classes are more memory efficient than arrays. Yet, I still […]