Hi,

I have two classes, A and B: B inherits from A. B is written in PHP, A is 
implemented inside of an extension. B has an array:

class B extends A
{
        var $myArray = array("one", "two", "three");

        function __construct()
        {
                parent::__construct();
        }

}

Is it possible to access $myArray in the parents constructor? Therefor I need 
the zval* pointer of the child!

I do not want to pass it as an argument.

Thanks and regards,
Thomas

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to