Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/../app/../vendor/symfony/translation/Loader
الملفات الموجودة في هذا الـ Path:
.
..
ArrayLoader.php
CsvFileLoader.php
FileLoader.php
IcuDatFileLoader.php
IcuResFileLoader.php
IniFileLoader.php
JsonFileLoader.php
LoaderInterface.php
MoFileLoader.php
PhpFileLoader.php
PoFileLoader.php
QtFileLoader.php
XliffFileLoader.php
YamlFileLoader.php

مشاهدة ملف: IniFileLoader.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Translation\Loader;

/**
 * IniFileLoader loads translations from an ini file.
 *
 * @author stealth35
 */
class IniFileLoader extends FileLoader
{
    protected function loadResource(string $resource): array
    {
        return parse_ini_file($resource, true);
    }
}