目前我正在学习ZF2。在通过“入门”时,我看到模块的每个配置文件都充满了 PHP 数组。文档中的一个示例:
<?php
return array(
'controllers' => array(
'invokables' => array(
'Album\Controller\Album' => 'Album\Controller\AlbumController',
),
),
// The following section is new and should be added to your file
'router' => array(
'routes' => array(
'album' => array(
'type' => 'segment',
'options' => array(
'route' => '/album[/:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
),
),
'view_manager' => array(
'template_path_stack' => array(
'album' => __DIR__ . '/../view',
),
),
);
带有数组的数组。实际上我知道,该数组只是函数的名称,它更像是带有键/值对的映射。
Zend MODS 之一指出我们可以将 JSON 用于配置文件: http: //framework.zend.com/manual/2.0/en/user-guide/routing-and-controllers.html#comment-696979913
有没有人可以为初学者提供例子?我真的更喜欢对这些文件配置使用 JSON 格式而不是数组/映射,但我在 ZF 主页上找不到它。或者也许我不应该这样做?