### URL第一种传参方式
http://localhost/home/index/index/参数一/参数二...
> 伪静态模式下,可从第三个参数后,无限填加新的参数。
例如:http://localhost/home/index/index/1/2/phpt/
> 可通过$geturlstr变量获取,例如:$geturlstr[0] = home
### URL第二种传参方式
http://localhost/home/index/index/?name=1&tel=2...
> 非伪静态模式下,需要在第三个参数后增加参数。例如:/?name=ourphp&tel=888...
> /index/?name=ourphp&tel=888 不可以 /index?name=ourphp&tel=888...
也可以通过实例化一个方法来获取参数,在控制器或模型中引入:
```
use PHPt\lib\request;
```
在方法中实例化
```
$r = new request();
```
通过 $r -> G("name","n"); 获取参数。