is there a good link to start learning the internals of php ? a video like http://www.youtube.com/watch?v=E_kZDvwofHY&feature=youtu.be&a ? ( python ) or anything, pdf, books, link that can i start ? to learn from the very root how php work. i google, and shamely olny have found a mailing list php internals. do they have blog or something ?

if i have ask at the wrong spot please edit my question

Thanks for your time.

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

The PHP Manual has a whole chapter on that topic:

The internals mailing list you mentioned is indeed the main newsgroup for core hackers

Looking at the PHP source code can also help understand how PHP works under the hood:

And there is a book by Sara Golemon that is supposed to be useful (can't tell):

Also see this presentation by Sebastian Bergmann about Compiler Internals:

And make sure to check Nikc's blog. He's got a number of posts on how to read the source:

In addition to that, you can check the PHP Credits for individual contributers:

A number of them run their own blogs which might contain more information.

link|improve this answer
aw i missed to see the link (php.net/manual/en/internals2.php) , i have browsed into php docs assuming that is Zend Engine, not php, php and Zend Engine(server) ? are different, am i right? – Adam Ramadhan Dec 8 '10 at 16:31
2  
@Adam The Zend Engine is the part that parses, compiles and executes PHP code. As opposed to the PHP core that is just a few basic things, like Request handling and File and Network I/O. On top of that you got the various extensions. – Gordon Dec 8 '10 at 16:36
btw the book is at 2006 is it ok ? – Adam Ramadhan Dec 8 '10 at 16:43
@Adam didnt read it. Can't tell how much of that is still up-to-date today. – Gordon Dec 8 '10 at 16:45
thanks alot gordon especialy the php.net/credits.php i never thought about that haha,anyway lets wait for 1-2 days :). – Adam Ramadhan Dec 8 '10 at 16:54
feedback

On http://docstore.mik.ua/orelly/weblinux2/php/ch14_01.htm you can also find some interesting internals about writing php extensions

link|improve this answer
feedback

From Dutch PHP Conference (2009):

PHP Compiler Internals (mp3)

with slides:

http://www.slideshare.net/sebastian_bergmann/php-compiler-internals-1898418

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.