用/ abc / abc / abc php渲染标题

时间:2014-03-24 00:05:58

标签: php zend-framework frameworks

我有使用php的经验,但我是zend框架的新手。有人可以给我一些关于如何让网站工作的信息,即www.facebook.com/nathandoe/photos 。 使用控制器如何创建一个接受不同名称并将其指向该页面的函数?

如果我有网站www.hello.com/profile

而不是使用GET www.hello.com/profile?is=342342?photos

如何处理它如www.hello.com/profile/342342/photos

我有控制器处理索引,我知道如何创建不同的功能..我坚持www.hello.com/profile/xxxxxxxx/photos那部分

1 个答案:

答案 0 :(得分:1)

在您的模块/ [Module Name] /config/module.config.php中,您可以设置路线。

'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',
                ),
            ),
        ),
    ),
),

这样的东西
'route'    => '/profile/[/:id]/photos',

参考http://framework.zend.com/manual/2.0/en/user-guide/routing-and-controllers.html