> -Original Message-
> From: PHP List [mailto:[EMAIL PROTECTED]]
> Sent: 08 August 2002 19:14
>
> Hi, after upgrading to 4.2, I seem to be getting this warning:
>
> PHP Warning: Call-time pass-by-reference has been deprecated
> - argument passed by value; If you would like to pass it
You should be able to fix this by changing the function DECLARATION for the
argument in question to take the variable by reference instead of by value
(which is the default).
So it should be something like:
OCIFetchInto ( $var1, &$rvar2, $var3 )
What you are currently doing is specifying at
2 matches
Mail list logo