From:             ales dot loncar at internet-solutions dot si
Operating system: Mac OS X 10.5.2
PHP version:      5.2.6
PHP Bug Type:     XML Writer
Bug description:  Creation of new xmlwriter using memory fails

Description:
------------
Creation of new xmlwriter using memory fails. Script stops at same line.
In Apache error log notice is writen:
[notice] child pid 363 exit signal Bus error (10)

Reproduce code:
---------------
$data = array(
    "foo" => 456,
    "bar" => 789,
    "aaa" => array(
        "abc" => 111
    )
);

$xml = new XmlWriter();
$xml->openMemory(); // script stopes in this line
$xml->startDocument('1.0', 'UTF-8');
$xml->startElement('root');

function write(XMLWriter $xml, $data){
    foreach($data as $key => $value){
        if(is_array($value)){
            $xml->startElement($key);
            write($xml, $value);
            $xml->endElement();
            continue;
        }
        $xml->writeElement($key, $value);
    }
}
write($xml, $data);

$xml->endElement();
echo $xml->outputMemory(true);

Expected result:
----------------
<?xml version="1.0" encoding="UTF-8"?>
<root><foo>456</foo><bar>789</bar><aaa><abc>111</abc></aaa></root>

Actual result:
--------------
Blank Screen

-- 
Edit bug report at http://bugs.php.net/?id=45422&edit=1
-- 
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=45422&r=trysnapshot52
Try a CVS snapshot (PHP 5.3): 
http://bugs.php.net/fix.php?id=45422&r=trysnapshot53
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=45422&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=45422&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=45422&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=45422&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=45422&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=45422&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=45422&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=45422&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=45422&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=45422&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=45422&r=globals
PHP 4 support discontinued:   http://bugs.php.net/fix.php?id=45422&r=php4
Daylight Savings:             http://bugs.php.net/fix.php?id=45422&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=45422&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=45422&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=45422&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=45422&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=45422&r=mysqlcfg

Reply via email to