Heim > Fragen und Antworten > Hauptteil
<?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');
}
}