![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-i18n/src/Translator/Loader/ |
<?php namespace Laminas\I18n\Translator\Loader; use Laminas\I18n\Exception; use Laminas\I18n\Translator\Plural\Rule as PluralRule; use Laminas\I18n\Translator\TextDomain; use function gettype; use function is_array; use function is_file; use function is_readable; use function sprintf; use function stream_resolve_include_path; /** * PHP array loader. */ class PhpArray extends AbstractFileLoader { /** * load(): defined by FileLoaderInterface. * * @see FileLoaderInterface::load() * * @param string $locale * @param string $filename * @return TextDomain * @throws Exception\InvalidArgumentException */ public function load($locale, $filename) { $resolvedIncludePath = stream_resolve_include_path($filename); $fromIncludePath = $resolvedIncludePath !== false ? $resolvedIncludePath : $filename; if (! $fromIncludePath || ! is_file($fromIncludePath) || ! is_readable($fromIncludePath)) { throw new Exception\InvalidArgumentException(sprintf( 'Could not find or open file %s for reading', $filename )); } $messages = include $fromIncludePath; if (! is_array($messages)) { throw new Exception\InvalidArgumentException(sprintf( 'Expected an array, but received %s', gettype($messages) )); } $textDomain = new TextDomain($messages); if ($textDomain->offsetExists('')) { if (isset($textDomain['']['plural_forms'])) { $textDomain->setPluralRule( PluralRule::fromString($textDomain['']['plural_forms']) ); } unset($textDomain['']); } return $textDomain; } }