![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/App/Config/Scope/ |
<?php /** * Configuration data converter. Converts associative array to tree array * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\App\Config\Scope; class Converter implements \Magento\Framework\Config\ConverterInterface { /** * Convert config data * * @param array $source * @return array */ public function convert($source) { $output = []; foreach ($source as $key => $value) { $this->_setArrayValue($output, $key, $value); } return $output; } /** * Set array value by path * * @param array &$container * @param string $path * @param string $value * @return void */ protected function _setArrayValue(array &$container, $path, $value) { $segments = explode('/', $path); $currentPointer = & $container; foreach ($segments as $segment) { if (!isset($currentPointer[$segment])) { $currentPointer[$segment] = []; } $currentPointer = & $currentPointer[$segment]; } $currentPointer = $value; } }