List of PHP native interfaces, and their implementation

List of PHP native interfaces, and their implementation This is the list of PHP native interfaces, and their implementation as native classes. This was extracted from the PHP 8.3 source code, with Reflection. Each link leads to the documentation. It is based on a standard PHP 8.3 distribution, plus a few extensions. Interfaces that are […]

Changed Behavior in PHP: The Ultimate Guide to Navigating PHP Features Updates

Changed Behavior in PHP

The Ultimate Guide to Navigating PHP Features Updates As PHP evolves, so do the language’s features, functionalities, and even the nuances in its behaviors: there are changed behavior in PHP. From syntax changes to the change in behavior of certain functions, it can be overwhelming to keep track of how each new version of PHP […]

A PHP Dictionary

A PHP Dictionary In the vast and dynamic ecosystem of PHP development, newcomers often find themselves grappling with a plethora of unfamiliar terms and concepts. From functions and methodologies to frameworks and patterns, navigating the PHP landscape can sometimes feel like learning a new language altogether. That’s why why we are introducing a PHP Dictionary. […]

Common services with PHP applications

Common services with PHP application

Common services with PHP applications PHP applications all have *.php files. Then, there are other files, needed for configuration, templating, or also external services. These files gives a measure of the popularity of the common services with PHP applications. The most famous is certainly composer, which is now present in virtually every PHP applications: over […]

All the recursive Functions in PHP

All the recursive Functions in PHP A recursive function is a function that calls itself, in order to solve a problem. This type of function is often used in situations where a problem can be broken down into smaller, similar yet smaller problems. The function keeps calling itself with modified arguments until a base case […]