up vote 0 down vote favorite
share [g+] share [fb]

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?

e.g.

class foo
{
  protected bar = array();
  getBar()
  {
    return &bar;
  }

}

class foo2
{
  blip = new foo().getBar(); // i know this isn't php
}


Is this correct and is the array bar being passed by reference?

link|improve this question

74% accept rate
I can't help but wonder why you are doing this, or if it is even a good idea... – Scott S. Sep 16 '08 at 5:59
feedback

3 Answers

up vote 3 down vote accepted

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:

<?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>

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:

http://www.php.net/manual/en/language.references.return.php

link|improve this answer
Thanks, it was the notation i was confused about (both needing referencing tags) – Karan Sep 16 '08 at 6:26
feedback

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...

link|improve this answer
This is a very specialized instance where i need to access this property (for normalizing the db in relation to the flatfile content). For the other 99/100 times this property is accessed, it is better off being private. – Karan Sep 16 '08 at 6:24
Isn't that why we have these things called getters? For example: class Foo { private int bar; int getBar() { return this.bar; } } – Scott S. Sep 17 '08 at 0:38
Yes, but it wouldn't be a referenced value if i used a getter, it would just be a copy. But i need(ed) to edit the original variable, hence the question :P – Karan Sep 27 '08 at 23:19
feedback

I think the same would happen in C/C++ or any language having pointers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.