Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我看来,如何获得翻译语言环境?
我想从变量 $this (视图的 PhpRenderer)开始。即我不想使用 onBootstrap 或 ActionController 因为我不在乎有一个视图变量。
谢谢!
你应该试试:
<?php echo \Locale::getDefault(); ?>
许多 I18n 类都引用了 PHP 的 Locale 类 (http://www.php.net/locale) - 所以在我看来,这将是一个很好的起点。
<?php echo $this->plugin('translate')->getTranslator()->getLocale(); ?>
请参阅: 在 Zend Framework 2 中的布局或视图中获取本地值