phalcon: router规则与解析,已经生成router的链接地址

本人采用的是假分模块(目录),通过命名空间来进行模块分组的,非官方分组,所以在router是都会加上 namespace 信息,你也可适当的参考:

前提:

/**
	 * 注册命名空间
	 */
	$loader->registerNamespaces(array(
		'controllers' => '../app/controllers'
	))->register();

  

 

路由一:

$router->add("/news/([0-9]{4})/([0-9]{2})/([0-9]{2})/:params",
			array(
				"namespace" => 'controllers\news',
				'controller'=>'index',
				'action'=>'show',
				'year'=>1,
				'month'=>2,
				'day'=>3,
				'parmas'=>4,
		));->setName("index-show");

controller:

<?php
namespace controllers\news;
use Phalcon\Mvc\Controller;
class IndexController extends Controller
{	

	public function indexAction()
	{
		
	}

	public function showAction()
	{
		$year = $month = $day = 0;
		$year = $this->dispatcher->getParam('year');
		$month = $this->dispatcher->getParam('month');
		$day = $this->dispatcher->getParam('day');
		
		

		$this->view->pick('news/index');
		$this->view->year = $year;
		$this->view->month = $month;
		$this->view->day = $day;
	}
}

  

生成链接:

echo $this->di['url']->get( array(
			"for" => "index-show",
			'year'=>"2016",
				'month'=>"09",
				'day'=>"20",
				'parmas'=>"good",
		));

 输出如下: 

/news/2016/09/20/

 

  

 

转载于:https://www.cnblogs.com/achengmu/p/5888231.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值