Re: [PHP-DEV] Adding/Updating ZVal Arrays to Object

2009-02-21 Thread Matthew C. Rice
Marcus, Thanks a bunch! I had a similar style pdf I found on the pecl site titled 200510_zend_conf_php_extension_development.pdf , but it was lacking a little on OOP. This looks like exactly what I needed. Between this and the Sara Golemon book I hope to fill a major gap.. Thanks again !!

Re: [PHP-DEV] Adding/Updating ZVal Arrays to Object

2009-02-21 Thread Marcus Boerger
Hello Matthew, I gave a bunch of tutorials on this with various other folks, Johannes, Sara, Wez. The slides from November 2007 are still up and contain probably more information than you ever wanted to know. There is also the demo extension that you can access through cvs. http://talks.somab

Re: [PHP-DEV] Adding/Updating ZVal Arrays to Object

2009-02-20 Thread Matthew C. Rice
Nathan, Thanks one last time. I am ordering the book now. I was going to originally, but read a bit on some reviews and it seemed it was missing some key Object parts. Most of what I have learned so far was based on other extensions, grep'ing the actual Zend source, and the post Sara Gole

Re: [PHP-DEV] Adding/Updating ZVal Arrays to Object

2009-02-20 Thread Nathan Nobbe
On Fri, Feb 20, 2009 at 3:02 PM, Matthew C. Rice wrote: > Nathan, > >Thanks a bunch. That was exactly what I was looking for. word > Is there any place you would consider a good resource to learn/get > documentation for these functions? my secret weapon, http://www.amazon.com/Extending

Re: [PHP-DEV] Adding/Updating ZVal Arrays to Object

2009-02-20 Thread Matthew C. Rice
Nathan, Thanks a bunch. That was exactly what I was looking for. Is there any place you would consider a good resource to learn/get documentation for these functions? Matthew C. Rice Nathan Nobbe wrote: On Fri, Feb 20, 2009 at 12:31 PM, Matthew C. Rice wrote: Hello everyone, I

Re: [PHP-DEV] Adding/Updating ZVal Arrays to Object

2009-02-20 Thread Nathan Nobbe
On Fri, Feb 20, 2009 at 12:31 PM, Matthew C. Rice wrote: > Hello everyone, > > >I am building a custom PHP Extension. It is object based, and while the > documentation seems to be lacking a little on this aspect in extensions, I > haven't let that slow me down. I have used other extensions as

[PHP-DEV] Adding/Updating ZVal Arrays to Object

2009-02-20 Thread Matthew C. Rice
Hello everyone, I am building a custom PHP Extension. It is object based, and while the documentation seems to be lacking a little on this aspect in extensions, I haven't let that slow me down. I have used other extensions as examples, and done a great deal of searching around to