RE: [PHP] fns From: Don Read (dread <email protected>)
Date: 11/15/00

On 16-Nov-00 Thomas Holton wrote:
>
> Hello,
>
> Is it true that one cannot call to a function within a function in PHP?
> I mean this:
>
> $result = &function1(&function2($input));
>

$result= (reference to) function1( (reference to) funxtion2() ) ???

no it's not true, you can do it.
but why do want do it ?
and what do you expect for the result ?

-- 
Don Read                                        dread <email protected>
-- The problem with people who have no vices is that you can be 
        sure they're going to have some pretty annoying virtues.

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