码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp中URL传参数的几种方式

时间:2020-03-12 09:54:05      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:alt   16px   ola   radius   min   box   多个参数   操作   string   

在thinkphp中,url传参合asp.net中原理类似,下面就单个参数和多个参数传递方式进行一个简单讲解

1.传单个参数

 单个参数这种比较简单,例如 想像edit操作里面传递一个id值,如下写法__URL__/edit/id/1

1
http://localhost/index.php/user/edit/id/1

id和其值1要分别位于/后面

后台获取id通过    $id=$_GET[‘id‘]   即可获取其具体值。

2.传多个参数

传多个参数相对比较麻烦一点,可以通过两种方式

 第一种:传id,和status

1
http://localhost/index.php/user/edit/id/1/status/2

status参数紧接其后写即可

后台获取两个参数

1
2
$id=$_GET[‘id‘];
$status=$_GET[‘status‘];

还有一种比较常规的用法如下:

1
http://localhost/index.php/user?id=1&&status=2

但这种方式不可以通过$_GET[‘id‘]的方式来获取,需要通过如下方式

1
2
3
$id=$_REQUEST[‘id‘];
$status=$_REQUEST[‘status‘];
//能通过$_GET[‘ID‘]获取的值,通过$_REQUEST[‘id‘]均可以获得。

 

thinkphp中URL传参数的几种方式

标签:alt   16px   ola   radius   min   box   多个参数   操作   string   

原文地址:https://www.cnblogs.com/huhewei/p/12466923.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!