1.传单个参数
单个参数这种比较简单,例如 想像edit操作里面传递一个id值,如下写法__URL__/edit/id/1
http:
//localhost/index.php/user/edit/id/1
id和其值1要分别位于/后面
后台获取id通过 $id=$_GET[‘id‘] 即可获取其具体值。
2.传多个参数
传多个参数相对比较麻烦一点,可以通过两种方式
第一种:传id,和status
http:
//localhost/index.php/user/edit/id/1/status/2
status参数紧接其后写即可
后台获取两个参数
$id
=
$_GET
[
‘id‘
];
$status
=
$_GET
[
‘status‘
];
还有一种比较常规的用法如下:
http:
//localhost/index.php/user?id=1&&status=2
但这种方式不可以通过$_GET[‘id‘]的方式来获取,需要通过如下方式
$id
=
$_REQUEST
[
‘id‘
];
$status
=
$_REQUEST
[
‘status‘
];
<span style=
"color: #339966;"
>
//能通过$_GET[‘ID‘]获取的值,通过$_REQUEST[‘id‘]均可
3.file_get_contents('php://input') 和POST的区别
如果POST的原始数据是一维数组或&拼接的标准格式的键值对字符串,那么可以用$_POST
来获取。
如果要通过file_get_contents获取,这种情况下可以发送json字符串,后台获取之后再json_encode转一下