例一、
echo $this->createUrl('post/show');
//URL:/index.php/post/show 或 /index.php?router=post/show
比如在配置文件中设置 url后缀
$config['application']['url_suffix'] = '.html';
则生成的url为//URL:/index.php/post/show.html 或 /index.php?router=post/show.html
同时在使用DoitPHP扩展类Pagination分页时能够正确取到页码值