ID:               32188
 Updated by:       [EMAIL PROTECTED]
 Reported By:      manu at manucorp dot com
-Status:           Feedback
+Status:           No Feedback
 Bug Type:         SimpleXML related
 Operating System: Linux
 PHP Version:      5.0.3
 New Comment:

No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Open". Thank you.




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

[2005-03-04 16:52:51] [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-03-04 11:07:32] manu at manucorp dot com

Description:
------------
When i extend SimpleXMLElement there is some weird issue on accessing
variable of the class. (perhaps related to bug #28817, i'm not
completely sure)

Reproduce code:
---------------
<?php
class Reader extends SimpleXMLElement {
        public $test;
        public function extract()
        {
                $this->test=array();
                var_dump(is_array($this->test));
        }
}
$uploadfile="file.xml";
$rs=simplexml_load_file($uploadfile,"Reader");
$rs->extract();

?>

Expected result:
----------------
bool(true)

Actual result:
--------------
bool(false)


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


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

Reply via email to