Ken Kinder wrote:

> The $this->children attribute should be an array of (references to) objects. 
> I think somehow in the foreach ($this->children as $child) the objects are 
> being copied, as $child->validate(); seems not to effect the original objects.


Someone just said you can use

$a = &$b

to make $a a reference to $b instead of a copy. Dunno if that solves 
you problem though, but it may be a step on the way.

 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to