我有使用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那部分
答案 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