ID:               39449
 Comment by:       johnking3004 at yahoo dot com
 Reported By:      pstradomski at gmail dot com
 Status:           No Feedback
 Bug Type:         Scripting Engine problem
 Operating System: Linux
 PHP Version:      5.2.0
 Assigned To:      dmitry
 New Comment:

<a href="http://cashing-murisoku.sakura.ne.jp/";>Á”ïŽÒ‹à—Z</a> 

<a href="http://cashing-kariru.sakura.ne.jp/";>Á”ïŽÒ‹à—Z</a>


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

[2008-03-26 10:29:44] johnking3004 at yahoo dot com

<a href="http://cashing-murisoku.sakura.ne.jp/";>Á”ïŽÒ‹à—Z</a> 

<a href="http://cashing-kariru.sakura.ne.jp/";>Á”ïŽÒ‹à—Z</a>

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

[2008-02-06 01:00:00] php-bugs at lists dot php dot net

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

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

[2008-01-29 11:31:17] [EMAIL PROTECTED]

The original test-cases from first post and from [19 Nov 2006 11:53am
UTC] work fine for me. The following code is not covered by this.

$this->idMappings[$id] = $this->entries[$offset];

The warning message is expected here.

You can fix it by redefining __get() with return by reference.

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

[2008-01-24 16:42:14] mail at jfcom dot de

For me it's hard to understand, what it should be, that you call fixed.
I searched quite a while, but I came to the conclusion, that fixing was
just closing the thread?
If it stays as it is, the overloading in case of __get and __set is
completely useless, because noone limits himself to simple variables or
uses such sick constructs. Is it really the solution to read the whole
array, modify it the way you need and write it back as lsmith posted?
Come on...

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

[2008-01-22 16:36:36] [EMAIL PROTECTED]

I am still seeing this issue on PHP 5.2.5.

Here is a link to a PEAR class affected:
http://pear.php.net/bugs/bug.php?id=10702

The method in question can be found here:
http://pear.php.net/package/XML_Feed_Parser/docs/latest/__filesource/f
source_XML_Feed_Parser__XML_Feed_Parser-1.0.2ParserType.php.html#a189

Changing 

$this->idMappings[$id] = $this->entries[$offset];

to

$mappings = $this->idMappings;
$mappings[$id] = $this->entries[$offset];
$this->idMappings = $mappings;

fixes the notice ..

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

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/39449

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

Reply via email to