Файловый менеджер - Редактировать - /home/tuudkjt/globeasy/wp-content/plugins/reviewx/vendor/hassankhan/config/src/Writer/Xml.php
Назад
<?php namespace Rvx\Noodlehaus\Writer; use DOMDocument; use SimpleXMLElement; /** * Xml Writer. * * @package Config * @author Jesus A. Domingo <jesus.domingo@gmail.com> * @author Hassan Khan <contact@hassankhan.me> * @author Filip Š <projects@filips.si> * @author Mark de Groot <mail@markdegroot.nl> * @link https://github.com/noodlehaus/config * @license MIT */ class Xml extends AbstractWriter { /** * {@inheritdoc} * Writes an array to a Xml string. */ public function toString($config, $pretty = \true) { $xml = $this->toXML($config); if ($pretty == \false) { return $xml; } $dom = new DOMDocument(); $dom->preserveWhiteSpace = \false; $dom->formatOutput = \true; $dom->loadXML($xml); return $dom->saveXML(); } /** * {@inheritdoc} */ public static function getSupportedExtensions() { return ['xml']; } /** * Converts array to XML string. * @param array $arr Array to be converted * @param string $rootElement I specified will be taken as root element * @param SimpleXMLElement $xml If specified content will be appended * * @return string Converted array as XML * * @see https://www.kerstner.at/2011/12/php-array-to-xml-conversion/ */ protected function toXML(array $arr, $rootElement = '<config/>', $xml = null) { if ($xml === null) { $xml = new SimpleXMLElement($rootElement); } foreach ($arr as $k => $v) { if (\is_array($v)) { $this->toXML($v, $k, $xml->addChild($k)); } else { $xml->addChild($k, $v); } } return $xml->asXML(); } }
| ver. 1.6 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка