show/hide this revision's text 2 deleted 3 characters in body

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 you can't do this isn't php
}


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

show/hide this revision's text 1

PHP property's scope overridden by passing as reference?

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 you can't do this
}


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