学习ThinkPHP3.2.2:视频第七讲中的U函数

时间:2021-07-11 08:52:04

3.2.2的U函数是否跟3.1的U函数第四个参数功能有异?


显示完整域名URL:

public function index(){

    echo U('Index/show', array('uid' => 1), '', true);// 第四个参数为true,表示url中包含完整域名

    die;

}

输入:http://localhost/wish/index.php/Home/Index/index/uid/1

显示:http://localhost/wish/index.php/Home/Index/show/uid/1