PHP 8.2.30
Preview: IniFileDumper.php Size: 984 B
/opt/cloudlinux/alt-php55/root/usr/share/pear/Symfony/Component/Translation/Dumper/IniFileDumper.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\Dumper;

use Symfony\Component\Translation\MessageCatalogue;

/**
 * IniFileDumper generates an ini formatted string representation of a message catalogue.
 *
 * @author Stealth35
 */
class IniFileDumper extends FileDumper
{
    /**
     * {@inheritDoc}
     */
    public function format(MessageCatalogue $messages, $domain = 'messages')
    {
        $output = '';

        foreach ($messages->all($domain) as $source => $target) {
            $escapeTarget = str_replace('"', '\"', $target);
            $output .= $source.'="'.$escapeTarget."\"\n";
        }

        return $output;
    }

    /**
     * {@inheritDoc}
     */
    protected function getExtension()
    {
        return 'ini';
    }
}

Directory Contents

Dirs: 0 × Files: 12

Name Size Perms Modified Actions
1.45 KB lrw-r--r-- 2019-12-18 11:24:07
Edit Download
810 B lrw-r--r-- 2019-12-18 11:24:07
Edit Download
1.84 KB lrw-r--r-- 2019-12-18 11:24:07
Edit Download
3.64 KB lrw-r--r-- 2019-12-18 11:24:07
Edit Download
984 B lrw-r--r-- 2019-12-18 11:24:07
Edit Download
893 B lrw-r--r-- 2019-12-18 11:24:07
Edit Download
2.31 KB lrw-r--r-- 2019-12-18 11:24:07
Edit Download
844 B lrw-r--r-- 2019-12-18 11:24:07
Edit Download
1.50 KB lrw-r--r-- 2019-12-18 11:24:07
Edit Download
1.32 KB lrw-r--r-- 2019-12-18 11:24:07
Edit Download
1.93 KB lrw-r--r-- 2019-12-18 11:24:07
Edit Download
822 B lrw-r--r-- 2019-12-18 11:24:07
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).