简体   繁体   English

不明白为什么我不能调用方法

[英]Can't understand why i can't call a method

Zend 2 Framework, layout.phtml. Zend 2 Framework,layout.phtml。

Here i can translate strings with $this->translate('key') but i can't get locale with $this->getLocale(). 在这里,我可以使用$ this-> translate('key')转换字符串,但无法使用$ this-> getLocale()获得语言环境。 Why? 为什么? They're both methods from the same class Translator! 它们都是同一类Translator中的方法! All i get is this exception: 我所得到的只是这个例外:

Fatal error: Uncaught exception 'Zend\\ServiceManager\\Exception\\ServiceNotFoundException' with message 'Zend\\View\\HelperPluginManager::get was unable to fetch or create an instance for getLocale' in D:\\Dropbox\\Projects\\www\\linksync\\vendor\\zendframework\\zendframework\\library\\Zend\\ServiceManager\\ServiceManager.php on line 496 致命错误:D:\\ Dropbox \\ Projects \\ www \\ linksync \\ vendor \\中未捕获的异常'Zend \\ ServiceManager \\ Exception \\ ServiceNotFoundException'和消息'Zend \\ View \\ HelperPluginManager :: get无法获取或创建getLocale实例”第496行的zendframework \\ zendframework \\ library \\ Zend \\ ServiceManager \\ ServiceManager.php

Here's my module.config.php (Application module) 这是我的module.config.php(应用程序模块)

<?php
return array(
    'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'Segment',
                'options' => array(
                    'route'    => '/[:lang]',
                    'constraints' => array(
                        'lang'       => '[a-zA-Z]{2}',
                    ),
                    'defaults' => array(
                        'controller' => 'Application\Controller\Index',
                        'action'     => 'index',
                        'lang'       => 'en',
                    ),
                ),
            ),
            // The following is a route to simplify getting started creating
            // new controllers and actions without needing to create a new
            // module. Simply drop new controllers in, and you can access them
            // using the path /application/:lang/:controller/:action
            'application' => array(
                'type'    => 'Literal',
                'options' => array(
                    'route'    => '/application',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Application\Controller',
                        'controller'    => 'Index',
                        'action'        => 'index',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'default' => array(
                        'type'    => 'Segment',
                        'options' => array(
                            'route'    => '/[:lang[/:controller[/:action[/:id]]]]',
                            'constraints' => array(
                                'lang'       => '[a-zA-Z]{2}',
                                'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
                                'action'     => '[a-zA-Z][a-zA-Z0-9_-]*',
                                'id'         => '[0-9]+',
                            ),
                            'defaults' => array(
                            ),
                        ),
                    ),
                ),
            ),
        ),
    ),
    'service_manager' => array(
        'abstract_factories' => array(
            'Zend\Cache\Service\StorageCacheAbstractServiceFactory',
            'Zend\Log\LoggerAbstractServiceFactory',
        ),
        'aliases' => array(
            'translatorMvc' => 'MvcTranslator',
        ),
        'factories' => array(
            'navigation' => 'Zend\Navigation\Service\DefaultNavigationFactory',
            'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory',
        ),
    ),
    'translator' => array(
        'locale' => 'en_US',
        'translation_file_patterns' => array(
            array(
                'type'     => 'gettext',
                'base_dir' => __DIR__ . '/../language',
                'pattern'  => '%s.mo',
            ),
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Application\Controller\Index' => 'Application\Controller\IndexController'
        ),
    ),
    'view_manager' => array(
        'display_not_found_reason' => true,
        'display_exceptions'       => true,
        'doctype'                  => 'HTML5',
        'not_found_template'       => 'error/404',
        'exception_template'       => 'error/index',
        'template_map' => array(
            'layout/layout'           => __DIR__ . '/../view/layout/layout.phtml',
            'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
            'error/404'               => __DIR__ . '/../view/error/404.phtml',
            'error/index'             => __DIR__ . '/../view/error/index.phtml',
        ),
        'template_path_stack' => array(
            __DIR__ . '/../view',
        ),
    ),
    // Placeholder for console routes
    'console' => array(
        'router' => array(
            'routes' => array(
            ),
        ),
    ),
);

The reason is that Translate is a view helper ( See Reference ) which makes it available via $this-> . 原因是Translate是视图帮助器( 请参阅参考资料 ),可通过$this-> You will need to use the Zend_Locale object in the view/layout like this: 您将需要在视图/布局中使用Zend_Locale对象,如下所示:

<?php
$locale = new Zend_Locale();

// Actual locale
print $locale->toString();

// if locale is 'de_AT' then 'de' will be returned as language
print $locale->getLanguage();

// if locale is 'de_AT' then 'AT' will be returned as region
print $locale->getRegion();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM