-
Writing PHP Extensions
Let’s try to pass array with a value of some unexpected type.
-
Writing PHP Extensions
The following code shouldn’t modify variable $y but it does.
-
PHP Community Support Lifecycle Changes: What Do They Mean for Your Team?
The PHP release cycle has followed the same cadence for over a decade, but changes are coming in 2024. Learn more about the upcoming PHP lifecycle changes and what they mean for your
-
Writing PHP Extensions
While we are on the subject of build processes and before we go deeper into building a PHP extension skeleton, it makes sense to explain how to rebuild the extension for production when it’s ready.
-
Writing PHP Extensions
In addition to these four files, “ext_skel” script created a “tests” directory, with several *.phpt files inside it.
-
Writing PHP Extensions
Objects in PHP are represented by zend_object structure immediately followed by plain array of properties (zvals).
-
Writing PHP Extensions
It’s a good time to say few words about PHP Memory Manager.
-
Writing PHP Extensions
Usually, when you pass a parameter to function, you do it by value, and it means, the called function cannot modify it.
-
Writing PHP Extensions
PHP arrays are complex data structures.
-
How to Install (and Configure) Ansible to Deploy a PHP Application
Get an overview of how to install and configure Ansible to deploy a PHP application in this blog.