PHP property's scope overridden by passing as reference? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T12:52:09Zhttp://stackoverflow.com/feeds/question/69564http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/69564/php-propertys-scope-overridden-by-passing-as-reference0PHP property's scope overridden by passing as reference?Karan Bhangui2008-09-16T05:18:06Z2008-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 &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#696683Answer by Nathan Strong for PHP property's scope overridden by passing as reference?Nathan Strong2008-09-16T05:50:24Z2008-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><?php
class foo {
protected $bar;
public function __construct()
{
$this->bar = array();
}
public function &getBar()
{
return $this->bar;
}
}
class foo2 {
var $barReference;
var $fooInstance;
public function __construct()
{
$this->fooInstance = new foo();
$this->barReference = &$this->fooInstance->getBar();
}
}
$testObj = new foo2();
$testObj->barReference[] = 'apple';
$testObj->barReference[] = 'peanut';
?>
<h1>Reference</h1>
<pre><?php print_r($testObj->barReference) ?></pre>
<h1>Object</h1>
<pre><?php print_r($testObj->fooInstance) ?></pre>
</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#697070Answer by Scott S. for PHP property's scope overridden by passing as reference?Scott S.2008-09-16T06:03:43Z2008-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#709270Answer by phjr for PHP property's scope overridden by passing as reference?phjr2008-09-16T10:10:59Z2008-09-16T10:10:59Z<p>I think the same would happen in C/C++ or any language having pointers.</p>