Date: 05/29/00
- Next message: wegmeyer <email protected>: "[PHP-DEV] PHP 4.0 Bug #4673: unable to access tables"
- Previous message: waldschrott: "Re: [PHP-DEV] Re: [PHP4BETA] array_walk: calling functions taking only ONE paramet && calling methods = not possible?"
- In reply to: thies <email protected>: "Re: [PHP-DEV] php4: similar_text has not been updated to take percent variable by reference"
- Next in thread: thies <email protected>: "Re: [PHP-DEV] php4: similar_text has not been updated to take percent variable by reference"
- Reply: thies <email protected>: "Re: [PHP-DEV] php4: similar_text has not been updated to take percent variable by reference"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Nothing easier than that:
// does not work, but should
print similar_text ('foobie','doobie',$percent);
print $percent;
// does work, using deprecated call-time referecne
print similar_text ('foobie','doobie',&$percent);
print $percent;
regards
> On Mon, May 29, 2000 at 04:31:19PM +0200, waldschrott wrote:
> > Hi, since reference by call-time is deprecated, similar_text() has not
> > been updated (I think), it does work in the php4 release if I pass it by
> > call-time
>
> please send a short code snippet that shows your problem!
>
> tc
>
>
-- o----------0-¬---------O-·---¬----o---®-----o o O ° . | http://www.kiffen.de | pRoteçt y0ur bRaín |0 O ° ¤ ° · 0°·³°²'²³-¹'³´³°^°³~³²³°'³²²¨³²^³¹³²°²³`³º³°Þ ° o © ° . · | psychedelic experience | gott <email protected> | O ° o ° o-¬--o--0-----©-·--O-----o-----0-¤----------o 0 ° · ° . ¤ ·-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: wegmeyer <email protected>: "[PHP-DEV] PHP 4.0 Bug #4673: unable to access tables"
- Previous message: waldschrott: "Re: [PHP-DEV] Re: [PHP4BETA] array_walk: calling functions taking only ONE paramet && calling methods = not possible?"
- In reply to: thies <email protected>: "Re: [PHP-DEV] php4: similar_text has not been updated to take percent variable by reference"
- Next in thread: thies <email protected>: "Re: [PHP-DEV] php4: similar_text has not been updated to take percent variable by reference"
- Reply: thies <email protected>: "Re: [PHP-DEV] php4: similar_text has not been updated to take percent variable by reference"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

