Date: 08/15/00
- Next message: Bug Database: "[PHP-DEV] PHP 4.0 Bug #3991 Updated: admin_values (like safe mode) can be overridden"
- Previous message: Bug Database: "[PHP-DEV] PHP 4.0 Bug #4083 Updated: Apache 1.3.12 Crashes With php4_module"
- In reply to: Mathieu Kooiman: "FW: [PHP-DEV] Getting object property value"
- Next in thread: Mathieu Kooiman: "RE: FW: [PHP-DEV] Getting object property value"
- Reply: Mathieu Kooiman: "RE: FW: [PHP-DEV] Getting object property value"
- Reply: Gustavo Badauy: "Re: [PHP-DEV] Getting object property value"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Next message: Bug Database: "[PHP-DEV] PHP 4.0 Bug #3991 Updated: admin_values (like safe mode) can be overridden"
- Previous message: Bug Database: "[PHP-DEV] PHP 4.0 Bug #4083 Updated: Apache 1.3.12 Crashes With php4_module"
- In reply to: Mathieu Kooiman: "FW: [PHP-DEV] Getting object property value"
- Next in thread: Mathieu Kooiman: "RE: FW: [PHP-DEV] Getting object property value"
- Reply: Mathieu Kooiman: "RE: FW: [PHP-DEV] Getting object property value"
- Reply: Gustavo Badauy: "Re: [PHP-DEV] Getting object property value"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

