PHP JSON 操作

來源:互聯網
上載者:User
由於JSON可以在很多種程式語言中使用,所以我們可以用來做小型資料中轉,如:PHP輸出JSON字串供JavaScript使用等。在PHP中可以使用 json_decode() 由一串規範的字串解析出 JSON對象,使用 json_encode() 由JSON 對象產生一串規範的字串。

例:

$json = '{"a":1, "b":2, "c":3, "d":4, "e":5 }';

var_dump(json_decode($json));

var_dump(json_decode($json,true));

輸出:

object(stdClass)#1 (5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int(3)
["d"] => int(4)
["e"] => int(5)
}
array(5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int(3)
["d"] => int(4)
["e"] => int(5)
}

$arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);

echo json_encode($arr);

輸出:{"a":1,"b":2,"c":3,"d":4,"e":5}

1. json_decode(),字元轉JSON,一般用在接收到Javascript 發送的資料時會用到。

$s='{"webname":"homehf","url":"www.homehf.com","contact":{"qq":"744348666","mail":"nieweihf@163.com","xx":"xxxxxxx"}}';
$web=json_decode($s);
echo '網站名稱:'.$web->webname.'
網址:'.$web->url.'
連絡方式:QQ-'.$web->contact->qq.' MAIL:'.$web->contact->mail;
?>

上面的例子中,我們首先定義了一個變數s,然後用json_decode()解析成JSON對象,之後可以按照JSON的方式去使用,從使用方式看,JSON和XML以及數組實現的功能類似,都可以儲存一些相互之間存在關係的資料,但是個人覺得JSON更容易使用,且可以使用JSON和JavaScript實現資料共用。

2. json_encode(),JSON轉字元,這個一般在AJAX 應用中,為了將JSON對象轉化成字串並輸出給 Javascript 時會用到,而向資料庫中儲存時也會用到。

$s='{"webname":"homehf","url":"www.homehf.com","contact":{"qq":"744348666","mail":"nieweihf@163.com","xx":"xxxxxxx"}}';
$web=json_decode($s);
echo json_encode($web);
?>

二 .PHP JSON 轉數組

$s='{"webname":"homehf","url":"www.homehf.com","qq":"744348666"}';
$web=json_decode($s); //將字元轉成JSON
$arr=array();
foreach($web as $k=>$w) $arr[$k]=$w;
print_r($arr);
?>

上面的代碼中,已經將一個JSON對象轉成了一個數組,可是如果是嵌套的JSON,上面的代碼顯然無能為力了,那麼我們寫一個函數解決嵌套JSON,

$s='{"webname":"homehf","url":"www.homehf.com","contact":{"qq":"744348666","mail":"nieweihf@163.com","xx":"xxxxxxx"}}';
$web=json_decode($s);
$arr=json_to_array($web);
print_r($arr);
function json_to_array($web){
$arr=array();
foreach($web as $k=>$w){
if(is_object($w)) $arr[$k]=json_to_array($w); //判斷類型是不是object
else $arr[$k]=$w;
}
return $arr;
}
?>

以上就介紹了PHP JSON 操作,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.