Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

--TEST--
Use multiple nodes with different names as children of <root>.

--FILE--
<?php
require_once '../ArrayToDOMDocument.php';

$data = array(
        'configuration' => array(
                'workflowExecutionRetentionPeriodInDays' => 1
        ),
        'domainInfo' => array(
                'name' => 'aws-php-sdk-domain',
                'status' => 'REGISTERED'
        )
);

echo Array2DOM::arrayToXMLString($data);
?>

--EXPECT--
<?xml version="1.0"?>
<root>
  <configuration>
    <workflowExecutionRetentionPeriodInDays><![CDATA[1]]></workflowExecutionRetentionPeriodInDays>
  </configuration>
  <domainInfo>
    <name><![CDATA[aws-php-sdk-domain]]></name>
    <status><![CDATA[REGISTERED]]></status>
  </domainInfo>
</root>