Re: FW: [PHP-DEV] Getting object property value From: Andrei Zmievski (andrei <email protected>)
Date: 08/15/00

On Tue, 15 Aug 2000, Mathieu Kooiman wrote:
> /* Writing this from my memory, am not sure about some stuff.. but It should
> get you
> started.. */
>
> PHP_FUNCTION (MyFunction) {
> pval **MyObject;
> HashTable *Properties;
>
> if ( zend_get_parameters_ex(1, &MyObject) == FAILURE)
> WRONG_PARAM_COUNT;
>
> Properties = (*MyObject)->obj.ce->default_properties;
> // perhaps its 'properties' look at struct _zend_class_entry { }
> // This is a normal hashtable, use zend_hash_*() on it.
> }

Or you can simply do:

Properties = HASH_OF(*MyObject);

-Andrei

Linux is like living in a teepee.
No Windows, no Gates, Apache in house.
                    - Usenet signature

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>