我对框架有一个问题。 我以你的活榜样为本。 我有:
http://mydomain.com/test/index.php/api/t1/module1/[email protected]?query1=mama&query2=papa
在我的api.php档案中,我根据这一请求使用了GET方法:
public function __construct(){
$this->dp = new Control();
}
public function get($id=NULL, $id2=NULL, $id3=NULL, $id4=NULL)
{
switch($id)
{
case "t1":
return $this->dp->t1(func_get_args());
break;
case "t2":
return $this->dp->t2(func_get_args());
break;
default:
throw new RestException(400);
break;
}
}
然后在我的<>控制.php上,
public function t1($numbers) {
print_r($numbers);
}
答复机构
Array ( [0] => t1 [1] => module1 [2] => [email protected] [3] => )
在这里,我想实现的是query1和query2? 我如何能够这样做?
感谢。