20 Writing extensionsThis is NOT the latest copy of this book; click here for the latest version.
PHP is an incredibly rich language, as I hope you have come to see by reading this far - there are extensions available to perform all sorts of popular operations with external libraries that really help add power to your script without much effort.
So, why would anyone want to write their own extension? We'll be answering that question in this chapter, as well as designing and producing from scratch a new extension for PHP. Note that this entire chapter requires you have a compiler to hand so that you can compile your extension. You need to be able to compile PHP - usually this requires a Unix operating system, but if you have Windows and a Windows compiler, or Cygwin, that will do also. Otherwise, while the information here might be interesting, you will not be able to make use of it unless you can compile PHP.
Topics covered in this chapter:
-
When to write a custom extension
-
How to design, create, and test your extension
Chapter contents20.1. Why write your own extension?
20.1.1. The C Perspective
20.2. Before we begin
20.3. First steps
20.4. Hello world - in C!
20.5. C Hello World v2
20.6. Factorials in C
20.7. Extensions Conclusion
20.8. Summary
20.9. Further reading
20.10. Next chapter
|
Want to see this stuff in print? PHP in a Nutshell takes the core topics covered here, adds in thousands of edits from the editorial team and myself, and combines them to make an unbeatable reference for PHP programmers at all levels.
My latest book has hundreds more tips on how to use PHP, Apache, and MySQL, plus Perl, Python, shell scripts, performance tuning, and more!
|