路由 闭包

D:\LearnWebDevelop\php\thinkphp_3.2.3_full\Application\Home\Conf\config.php

<?php
return array(
//'配置项'=>'配置值'
'URL_ROUTER_ON' => true, //开启路由
'URL_ROUTE_RULES'=>array(
    //http://localhost/thinkphp323/index.php/home/test
    //just test
    'test' => function(){ echo 'just test'; },
    //http://localhost/thinkphp323/index.php/home/hello/LUCY
    //Hello,LUCY
    'hello/:name' => function($name){
                           echo 'Hello,'.$name;
                     }
)
);

 

posted @ 2017-12-01 16:31  sky20080101  阅读(66)  评论(0)    收藏  举报