php擷取通過url的json資料,返回的是空值

來源:互聯網
上載者:User
http://php.net/api/apply.php?&apply={"apply":{"name":"4747474","site":"http:\/\/4444444444444444","icon":"47","information":"474","about":"747","weibo":"74444444444","email":"74444444444444444","moblie":"89742589633","isfree":"y","applytime":1349939108}}

這個是一個連結,我在這個頁面上要怎麼把那段json格式給接下出來呢?


回複討論(解決方案)

$x = json_decode($_GET['apply']);

$x = json_decode($_GET['apply']);


得出來還是空值,可能那個字串存在錯誤吧...

var_dump(json_decode($_GET['apply'],true));
看?出什麽?

var_dump(json_decode($_GET['apply'],true));
看?出什麽?


NULL

var_dump(json_decode(urldecode($_GET['apply']),true));

var_dump(json_decode(urldecode($_GET['apply']),true));



也是不行,最後我把那些多餘的\去掉了,不知道是為啥啊?

print_r(json_decode('{"apply":{"name":"4747474","site":"http:\/\/4444444444444444","icon":"47","information":"474","about":"747","weibo":"74444444444","email":"74444444444444444","moblie":"89742589633","isfree":"y","applytime":1349939108}}'));
stdClass Object(    [apply] => stdClass Object        (            [name] => 4747474            [site] => http://4444444444444444            [icon] => 47            [information] => 474            [about] => 747            [weibo] => 74444444444            [email] => 74444444444444444            [moblie] => 89742589633            [isfree] => y            [applytime] => 1349939108        ))

PHP code
print_r(json_decode('{"apply":{"name":"4747474","site":"http:\/\/4444444444444444","icon":"47","information":"474","about":"747","weibo":"74444444444","email":"74444444444444444","moblie":"……



嗯,謝謝了

LZ地址中參數apply前面多了個&符號,你看會不會是這個的問題

之前是我的文字格式設定有問題,得出來的結果有錯誤

$json_string = $_GET["apply"];
if(ini_get("magic_quotes_gpc")=="1")
{
$json_string=stripslashes($json_string);
}

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.