Re: [PHP] Re: php5 call by refference

2005-11-21 Thread Georgi Ivanov
Thanks ! It's all clear now . :) On Monday 21 November 2005 14:45, Oliver Grätz wrote: > Georgi Ivanov schrieb: > > Hi, > > AFAIK, in PHP5 one can't call function with function parameters . > > The error is that you only can pass variables by reference. > > foo(strlen('aaa'),strlen('')); > >

[PHP] Re: php5 call by refference

2005-11-21 Thread Oliver Grätz
Georgi Ivanov schrieb: > Hi, > AFAIK, in PHP5 one can't call function with function parameters . > The error is that you only can pass variables by reference. > foo(strlen('aaa'),strlen('')); > > Is there some sort of workaround ? First of all, the problem with this arises if your function fo