public function Hi($name = 'World')

<?php
//D:\LearnWebDevelop\php\thinkphp_5.0.5_full\application\outermok\controller\Index.php
namespace app\outermok\controller;
use app\outermok\controller\Innermok;

class Index extends Innermok
{
    //http://localhost/tp5/index.php/outermok/Index
    public function index()
    {
        return 'Hello,World!';
    }
    
    //http://localhost/tp5/index.php/outermok/Index/Hi/name/wilson
    //Hi,wilson!
    public function Hi($name = 'World')
    {
        return 'Hi,' . $name . '!';
    }

}

 

posted @ 2017-12-19 16:12  sky20080101  阅读(100)  评论(0)    收藏  举报