php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #6427 func_get_arg() does not support references
Submitted: 2000-08-29 21:38 UTC Modified: 2010-08-07 01:42 UTC
Votes:24
Avg. Score:4.6 ± 0.6
Reproduced:23 of 23 (100.0%)
Same Version:2 (8.7%)
Same OS:12 (52.2%)
From: waldschrott@php.net Assigned:
Status: Not a bug Package: *General Issues
PHP Version: 4.0.1pl2 OS: *
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: waldschrott@php.net
New email:
PHP Version: OS:

 

 [2000-08-29 21:38 UTC] waldschrott@php.net
func_get_arg() does not support references (see example),

$o=1;
test($o);
echo $o;
function test()	{
   $l=&func_get_arg(0);
   $l=2; }

displays 1, should 2, I think it should be possible changing this without impact, if not perhaps a func_get_rarg() be fine

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-09-20 18:23 UTC] stas@php.net
I fear this cannot be done - you should pass a variable by reference from the start, otherwise you will just assign a reference to a copy.
 [2000-09-20 21:40 UTC] waldschrott@php.net
a function func_get_rarg() should avoid this by treating any function parameter as a reference (if possible), moved to feature request
 [2000-09-23 12:22 UTC] joey@php.net
Stas:
 If I possible, I would like to better understand you statement...here is what I am thinking you mean,
please correct me if I am wrong:
$o=1;
test($o);
echo $o;
function test() {
   $a = &func_get_args();
   /** $a[0] has already been passed as a copy. We have no idea what to reference it back to! */
}
 [2003-01-18 14:53 UTC] moriyoshi@php.net
There are the same requests as this one:

Bug #14705
Bug #15098
Bug #16464

 [2010-08-07 01:42 UTC] johannes@php.net
-Status: Open +Status: Bogus -Package: Feature/Change Request +Package: *General Issues
 [2010-08-07 01:42 UTC] johannes@php.net
this isn't possiblewith the engine and since PHP 5 way less needed.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 17:01:31 2024 UTC