<?php
namespace appindexcontroller;
use thinkController;
class Test1 erweitert Controller
{
public function index(){
return 'shepi';
}
public function demo3()
{
zurück '学习'.$this->request->param('lesson');
}
public function demo4()
{
return '学习'.$this->request->get('lesson') ;
//return '学习'.Request::instance()->param('lesson');
}
}
tp5.com/index/test1/demo3/lesson/dddd 测试的没问题啊,你是不是用的demo4方法?
传了值 啊 tp5.com/index/test1/demo3/lesson/dddd
你传值了吗?