在開發中,我們經常需要使用url傳遞參數。在get請求中,我們可以使用json格式傳遞參數。
http://www.example.com/path?username=john&password=123456&info={'age':18,'sex':'male'}
在上面的例子中,我們使用了info參數,并在其值中傳遞了一個json對象。
下面是一個簡單的獲取get傳遞參數的php代碼:
if(isset($_GET)){ $username = $_GET['username']; $password = $_GET['password']; $info = json_decode($_GET['info']); $age = $info->age; $sex = $info->sex; }
在上面的代碼中,我們使用了json_decode函數將傳遞的json字符串轉換成了php對象。
通過get傳遞參數,我們可以方便地在url中傳遞參數,也可以使用json格式傳遞復雜的參數。