-
Writing PHP Extensions: Overriding Object Handlers
If you remember, each object keeps an object handlers table. We started to use it in the previous chapter on embedding C data.
-
Writing PHP Extensions: Copy on Write
The following code shouldn’t modify variable $y but it does.
-
The Hidden Costs of Enterprise Web App Modernization
The benefits of enterprise application modernization are clear. However, the path to achieving it is often filled with unexpected costs. While many organizations plan for initial
-
Writing PHP Extensions: Using OOP in Our Example Extension
This chapter looks at how to use OOP in the previously constructed example extension
-
Dutch PHP Conference
Thanks for talking with Zend at the Dutch PHP Conference! Use this page to keep the conversation going, and learn how Zend makes mission-critical PHP possible.
-
Writing PHP Extensions: Running PHP Extension Tests
In addition to these four files, “ext_skel” script created a “tests” directory, with several *.phpt files inside it.
-
Writing PHP Extensions: Extension Skeleton File Content
Let’s review the contents of extension skeleton files.
-
Writing PHP Extensions: PHP References
Usually, when you pass a parameter to function, you do it by value, and it means, the called function cannot modify it.