2023-03-11 12:04:29 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Zend Framework (http://framework.zend.com/)
|
|
|
|
*
|
|
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
2023-04-01 09:03:34 +03:00
|
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
2023-03-11 12:04:29 +03:00
|
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Zend\Config\Writer;
|
|
|
|
|
|
|
|
use XMLWriter;
|
|
|
|
use Zend\Config\Exception;
|
|
|
|
|
|
|
|
class Xml extends AbstractWriter
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* processConfig(): defined by AbstractWriter.
|
|
|
|
*
|
|
|
|
* @param array $config
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function processConfig(array $config)
|
|
|
|
{
|
|
|
|
$writer = new XMLWriter();
|
|
|
|
$writer->openMemory();
|
|
|
|
$writer->setIndent(true);
|
|
|
|
$writer->setIndentString(str_repeat(' ', 4));
|
|
|
|
|
|
|
|
$writer->startDocument('1.0', 'UTF-8');
|
|
|
|
$writer->startElement('zend-config');
|
|
|
|
|
|
|
|
foreach ($config as $sectionName => $data) {
|
|
|
|
if (!is_array($data)) {
|
|
|
|
$writer->writeElement($sectionName, (string) $data);
|
|
|
|
} else {
|
|
|
|
$this->addBranch($sectionName, $data, $writer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$writer->endElement();
|
|
|
|
$writer->endDocument();
|
|
|
|
|
|
|
|
return $writer->outputMemory();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a branch to an XML object recursively.
|
|
|
|
*
|
|
|
|
* @param string $branchName
|
|
|
|
* @param array $config
|
|
|
|
* @param XMLWriter $writer
|
|
|
|
* @return void
|
|
|
|
* @throws Exception\RuntimeException
|
|
|
|
*/
|
|
|
|
protected function addBranch($branchName, array $config, XMLWriter $writer)
|
|
|
|
{
|
|
|
|
$branchType = null;
|
|
|
|
|
|
|
|
foreach ($config as $key => $value) {
|
|
|
|
if ($branchType === null) {
|
|
|
|
if (is_numeric($key)) {
|
|
|
|
$branchType = 'numeric';
|
|
|
|
} else {
|
|
|
|
$writer->startElement($branchName);
|
|
|
|
$branchType = 'string';
|
|
|
|
}
|
|
|
|
} elseif ($branchType !== (is_numeric($key) ? 'numeric' : 'string')) {
|
|
|
|
throw new Exception\RuntimeException('Mixing of string and numeric keys is not allowed');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($branchType === 'numeric') {
|
|
|
|
if (is_array($value)) {
|
2023-04-01 09:03:34 +03:00
|
|
|
$this->addBranch($branchName, $value, $writer);
|
2023-03-11 12:04:29 +03:00
|
|
|
} else {
|
|
|
|
$writer->writeElement($branchName, (string) $value);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (is_array($value)) {
|
|
|
|
$this->addBranch($key, $value, $writer);
|
|
|
|
} else {
|
|
|
|
$writer->writeElement($key, (string) $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($branchType === 'string') {
|
|
|
|
$writer->endElement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|