Re: [PHP-DOC] call by reference

2003-11-26 Thread Gabor Hojtsy
In light of the a recent bug with the run time call by reference examples. I started going through and finding the examples that have used the &$var syntax. I was thinking, perhaps the proto should reflect that that the parameter is passed by reference: array getimagesize ( string filename [, array

Re: [PHP-DOC] call by reference

2003-11-26 Thread Mehdi Achour
Hi Curt, * Thus wrote Curt Zirzow ([EMAIL PROTECTED]): array getimagesize ( string filename [, array &imageinfo]) I can think of two solutions that could work: Adding an attribute to the : imaginfo ... Or simply adding & the the paramater value. After looking through some of the function pro

Re: [PHP-DOC] call by reference

2003-11-25 Thread Curt Zirzow
* Thus wrote Curt Zirzow ([EMAIL PROTECTED]): > array getimagesize ( string filename [, array &imageinfo]) > > I can think of two solutions that could work: > > Adding an attribute to the : > imaginfo > ... > > Or simply adding & the the paramater value. After looking through some of the func

[PHP-DOC] call by reference

2003-11-25 Thread Curt Zirzow
In light of the a recent bug with the run time call by reference examples. I started going through and finding the examples that have used the &$var syntax. I was thinking, perhaps the proto should reflect that that the parameter is passed by reference: array getimagesize ( string filename [, arr