<?php
namespace app\index\controller;
use think\Controller;
class Test1 extends Controller
{
public functionindex(){
return 'shepi';
}
public functiondemo3()
{
return '学习'.$this->request->param( 'lesson');
}
public functiondemo4()
{
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を渡しました
値を渡しましたか?