PHP property's scope overridden by passing as reference? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T12:52:09Z http://stackoverflow.com/feeds/question/69564 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/69564/php-propertys-scope-overridden-by-passing-as-reference 0 PHP property's scope overridden by passing as reference? Karan Bhangui 2008-09-16T05:18:06Z 2008-09-16T10:10:59Z <p>In PHP, if you return a reference to a protected/private property to a class outside the scope of the property does the reference override the scope?</p> <p><strong>e.g.</strong></p> <pre><code>class foo { protected bar = array(); getBar() { return &amp;bar; } } class foo2 { blip = new foo().getBar(); // i know this isn't php } </code></pre> <p><hr /></p> <p>Is this correct and is the array bar being passed by reference?</p> http://stackoverflow.com/questions/69564/php-propertys-scope-overridden-by-passing-as-reference/69668#69668 3 Answer by Nathan Strong for PHP property's scope overridden by passing as reference? Nathan Strong 2008-09-16T05:50:24Z 2008-09-16T05:50:24Z <p>Well, your sample code is not PHP, but yes, if you return a reference to a protected variable, you can use that reference to modify the data outside of the class's scope. Here's an example:</p> <pre><code>&lt;?php class foo { protected $bar; public function __construct() { $this-&gt;bar = array(); } public function &amp;getBar() { return $this-&gt;bar; } } class foo2 { var $barReference; var $fooInstance; public function __construct() { $this-&gt;fooInstance = new foo(); $this-&gt;barReference = &amp;$this-&gt;fooInstance-&gt;getBar(); } } $testObj = new foo2(); $testObj-&gt;barReference[] = 'apple'; $testObj-&gt;barReference[] = 'peanut'; ?&gt; &lt;h1&gt;Reference&lt;/h1&gt; &lt;pre&gt;&lt;?php print_r($testObj-&gt;barReference) ?&gt;&lt;/pre&gt; &lt;h1&gt;Object&lt;/h1&gt; &lt;pre&gt;&lt;?php print_r($testObj-&gt;fooInstance) ?&gt;&lt;/pre&gt; </code></pre> <p>When this code is executed, the print_r() results will show that the data stored in $testObj->fooInstance has been modified using the reference stored in $testObj->barReference. However, the catch is that the function must be defined as returning by reference, AND the call must also request a reference. You need them both! Here's the relevant page out of the PHP manual on that:</p> <p><a href="http://www.php.net/manual/en/language.references.return.php" rel="nofollow">http://www.php.net/manual/en/language.references.return.php</a></p> http://stackoverflow.com/questions/69564/php-propertys-scope-overridden-by-passing-as-reference/69707#69707 0 Answer by Scott S. for PHP property's scope overridden by passing as reference? Scott S. 2008-09-16T06:03:43Z 2008-09-16T06:03:43Z <p>Forgive me, but use a public variable and lose the need to "hack" access to a protected variable? What you are doing seems like a fairly bad idea... Perhaps if you told us more of what you were trying to accomplish, we could find a good way to go about it...</p> http://stackoverflow.com/questions/69564/php-propertys-scope-overridden-by-passing-as-reference/70927#70927 0 Answer by phjr for PHP property's scope overridden by passing as reference? phjr 2008-09-16T10:10:59Z 2008-09-16T10:10:59Z <p>I think the same would happen in C/C++ or any language having pointers.</p>