Файловый менеджер - Редактировать - /home/lmsyaran/public_html/libraries/gantry5/vendor/rockettheme/toolbox/ArrayTraits/src/Export.php
Назад
<?php namespace RocketTheme\Toolbox\ArrayTraits; use Symfony\Component\Yaml\Exception\DumpException; use Symfony\Component\Yaml\Yaml; /** * Implements ExportInterface. * * @package RocketTheme\Toolbox\ArrayTraits * @author RocketTheme * @license MIT * * @property array $items */ trait Export { /** * Convert object into an array. * * @return array */ public function toArray() { return $this->items; } /** * Convert object into YAML string. * * @param int $inline The level where you switch to inline YAML. * @param int $indent The amount of spaces to use for indentation of nested nodes. * * @return string A YAML string representing the object. * @throws DumpException */ public function toYaml($inline = 3, $indent = 2) { return Yaml::dump($this->toArray(), $inline, $indent, true, false); } /** * Convert object into JSON string. * * @return string */ public function toJson() { return json_encode($this->toArray()); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.02 |
proxy
|
phpinfo
|
Настройка