ID:               29378
 Updated by:       php-bugs@lists.php.net
 Reported By:      chernyshevsky at hotmail dot com
-Status:           Feedback
+Status:           No Feedback
 Bug Type:         Zend Engine 2 problem
 Operating System: Windows 2000
 PHP Version:      5.0.0
 New Comment:

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".


Previous Comments:
------------------------------------------------------------------------

[2005-03-06 20:52:40] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip



------------------------------------------------------------------------

[2005-02-11 15:42:50] l0cky at jolt dot co dot uk

The simplest solution I have is

//Copy works
foreach($array = $object->array as $element)
{
    print($element);
}

However, if you want to access the array elements by reference instead
of copy, then you're in trouble.

Even this produces the same error:

$array_ref =& $object->array;

------------------------------------------------------------------------

[2004-10-25 23:14:57] benneh at gmail dot com

I've just run into this problem, here is my test case

Testcase:
---------
class Language {
        private $lang_bits = array(); 
        public function __get($lang_bit) {
                global $$lang_bit;

                if(!isset($this->lang_bits[$lang_bit])) {
                        $this->lang_bits[$lang_bit] = $$lang_bit;
                }
                return $this->lang_bits[$lang_bit];
        }
}

$page = array('bla' => 'xyz');
$lang = new Language;
foreach($lang->page as $lang_key => $lang_bit) {
        echo $lang_key.' => '.$lang_bit;
}

Expected Results :
------------------
bla => xyz

Actual Results :
----------------
Fatal error: Cannot access undefined property for object with
overloaded property access
Just confirming its presence in 5.0.2 WinXP SP2 Apache 1.3.31

------------------------------------------------------------------------

[2004-07-28 01:02:28] chernyshevsky at hotmail dot com

I know the class doesn't have a member called 'cows'. That's what
__get() and __set() is for after all. If I change the code to

$O->cows = array("Betty", "Agnes", "Jeff");
$temp = $O->cows;
foreach($temp as $cow) {
        echo "<div>$cow</div>";
}

Now why should it fail just because the property access is through
foreach()?

------------------------------------------------------------------------

[2004-07-26 16:45:56] cysgwr_eryri at yahoo dot co dot uk

Your 'Object' object doesn't have a 'cows' member variable. The "object
with overloaded property access" that the warning is telling you about
doesn't exist is this:

$O->cows

Which 'cows' are you referring to?

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/29378

-- 
Edit this bug report at http://bugs.php.net/?id=29378&edit=1

Reply via email to