请求URL,http://hezongfentou.com/tp5/hello?aa=1&&bb=2
结果多出一个null,什么情况
array(3) {
["aa"] => string(1) "1"
["bb"] => string(1) "2"
[0] => NULL
}
这是代码
<?php
namespace app\demo\controller;
use think\Request;
class Index
{
public function hello(Request $request)
{
dump(input());
}
}