1.配置路由器参数时发生的错误
方法参数错误:id
throw new \InvalidArgumentException('method param miss:' . $name);
2.php代码
class Test
{
public function hello($id, $name)
{
echo $id;
echo '|';
echo $name;
return 'hello, qiyue';
}
}
3.浏览器输入的地址
http://z.cn/hello/123.name=qiyue
请问如何修改,谢谢