我们可以在另一个模块中有多个模块吗?
可能是类似的结构:
/module
/Application
/module
/SubApplication1
/SubApplication2
我正在寻找一个简单的例子或有人知道的文章。我已经用Google搜索了参考资料,但似乎到目前为止还没有探索过zf2的这一部分。
答案 0 :(得分:1)
模块中有多个名称空间很容易。您唯一需要做的就是为Zend Autoloader提供配置。对于Zend\Loader\StandardAutoloader
,可以在模块中设置配置,看起来像这样:
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\ClassMapAutoloader' => array(
__DIR__ . '/autoload_classmap.php',
),
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
// This is the default namespace most probably the module dir name
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
// And this is for your custom namespace within the module
'SomeNamespace' => __DIR__ . '/src/' . 'SomeNamespace',
'OtherNamespace' => __DIR__ . '/src/' . 'OtherNamespace',
),
),
);
}
对于Zend\Loader\ClassMapAutoloader
,它是相同的概念。您只需要将命名空间与类文件匹配:
// file: ~/autoload_classmap.php
return array(
'SomeNamespace\Controller\SomeController' => __DIR__ . '/src/SomeNamespace/Controller/SomeController.php',
'OtherNamespace\Controller\OtherController' => __DIR__ . '/src/OtherNamespace/Controller/OtherController.php',
);
要注意的事情!确保子模块名称空间的名称不与其他模块名称空间冲突。
希望这会有所帮助:)
Stoyan