Re: [PHP-DEV] Re: Zend API / PHP Internals Reference Manual

2006-04-16 Thread Steph Fox
ons... :-) On Sun, April 16, 2006 10:15 pm, Steph Fox wrote: and I'll also back Sara :) she's good. - Original Message - From: "Sara Golemon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: Sent: Monday, April 17, 2006 2:32 AM Subject: [PHP-DEV] Re: Ze

Re: [PHP-DEV] Re: Zend API / PHP Internals Reference Manual

2006-04-16 Thread Richard Lynch
sage - > From: "Sara Golemon" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Cc: > Sent: Monday, April 17, 2006 2:32 AM > Subject: [PHP-DEV] Re: Zend API / PHP Internals Reference Manual > > >> http://lxr.php.net should help you with decoding all t

Re: [PHP-DEV] Re: Zend API / PHP Internals Reference Manual

2006-04-16 Thread Steph Fox
and I'll also back Sara :) she's good. - Original Message - From: "Sara Golemon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: Sent: Monday, April 17, 2006 2:32 AM Subject: [PHP-DEV] Re: Zend API / PHP Internals Reference Manual http://lxr.php.n

[PHP-DEV] Re: Zend API / PHP Internals Reference Manual

2006-04-16 Thread Sara Golemon
http://lxr.php.net should help you with decoding all those macros. But if it's a reference you want: [plug]Extending and Embedding PHP: Available soon from Amazon.com and other fine retailers[/plug] A not-insignificant percentage of the appendices is made up of just this kind of API referenc

Re: [PHP-DEV] Re: Zend API

2004-03-09 Thread Stanislav Malyshev
SG>> Note that in PHP5, private/protected properties have unusual looking SG>> property names (starting with nulls and the like). Also beware that in PHP5 HASH_OF can return NULL for non-standard objects. -- Stanislav Malyshev, Zend Products Engineer [EMAIL PROTECTED] http://www.zend.com/ +97

[PHP-DEV] Re: Zend API

2004-03-09 Thread Sara Golemon
Z_TYPE_P(pzval) will equal IS_ARRAY or IS_OBJECT (depending on which of the two it is). Array elements/Object properties can be found in HASH_OF(pzval). As to actually accessing the elements/properties: Every function you'll ever need for that can be found in Zend/zend_hash.h Note that in PHP5,