Файловый менеджер - Редактировать - /home/tuudkjt/globeasy/wp-content/plugins/reviewx/vendor/hassankhan/config/src/Parser/Properties.php
Назад
<?php namespace Rvx\Noodlehaus\Parser; /** * Properties parser. * * @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 Properties implements ParserInterface { /** * {@inheritdoc} * Parses a Properties file as an array. */ public function parseFile($filename) { return $this->parse(\file_get_contents($filename)); } /** * {@inheritdoc} * Parses a Properties string as an array. */ public function parseString($config) { return $this->parse($config); } private function parse($txtProperties) { $result = []; // first remove all escaped whitespace characters: $txtProperties = \preg_replace('/(?<!\\\\)\\\\[\\r\\n\\t\\f\\v][ \\r]*/', '', $txtProperties); // next split all lines not starting with # or ! on characters = or : (unless escaped): \preg_match_all('/^([^#!].*)(?<!\\\\)[=:](.*)$/mU', $txtProperties, $matches, \PREG_SET_ORDER, 0); foreach ($matches as $match) { $result[\trim(\stripslashes($match[1]))] = \trim(\stripslashes($match[2])); } return $result; } /** * {@inheritdoc} */ public static function getSupportedExtensions() { return ['properties']; } }
| ver. 1.6 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка