|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-02-26 05:07 UTC] mailling at bigfoot dot com
I tried it with: allow_call_time_pass_reference = Off and allow_call_time_pass_reference = On
It seems that the result is not send automatically as a reference
class A{
function &b(&$f) {
$d=&$f;
$f='5';
return $d;
}
}
$c='3';
$d=new A();
$h=$d->b($c);
$h=&$d->b($c); //The & is needed to work well
$h='9';
echo $c. ' '.$h;
The value of c is not updated correctly if we don't ask for a reference
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 08:00:01 2025 UTC |
let's run this code <?php class A{ function &b(&$f) { $d=&$f; $f='5'; return $d; } } $c='3'; $d=new A(); $h=$d->b($c); //$h=&$d->b($c); //The & is needed to work well //we get $h=&$c; $h='9'; echo $c. ' '.$h; //since we should see 9 9, but we can see 5 9 ?> we get 5 9 If we adapt the code to: //$h=$d->b($c); $h=&$d->b($c); //The & is needed to work well we get 9 9, and that should be the good value, rigth?