在PHP 中使用 JSON

在php 中使用 json

本教程將會(huì)教我們?nèi)绾问褂?php 編程語言編碼和解碼 json 對(duì)象。讓我們先來準(zhǔn)備環(huán)境以便針對(duì) json 進(jìn)行 php 編程。

1. 環(huán)境

從 php 5.2.0 開始默認(rèn)捆綁了 json 擴(kuò)展并被編譯到 php 中。

2. json 函數(shù)

函數(shù)程序庫
json_encode返回一個(gè)值的 json 表示形式。
json_decode解碼為一個(gè) json 字符串。
json_last_error返回最后一次出現(xiàn)的錯(cuò)誤。

3. 使用 php 編碼 json(json_encode)

php 的 json_encode() 函數(shù)用于在 php 中編碼 json。編碼成功時(shí)這個(gè)函數(shù)返回給定值的 json 表示形式,失敗則返回 false。

語法:

string json_encode ( $value [, $options = 0 ] )

參數(shù):

  • value: 要編碼的值。這個(gè)函數(shù)只能用于 utf-8 編碼的數(shù)據(jù)。
  • options: 這個(gè)可選值是一個(gè)由 json_hex_quot, json_hex_tag, json_hex_amp, json_hex_apos, json_numeric_check,json_pretty_print, json_unescaped_slashes, json_force_object 組成的位掩碼。

示例:

下面的例子展示了如何使用 php 將一個(gè)數(shù)組轉(zhuǎn)換為 json:

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

執(zhí)行時(shí)會(huì)生成如下結(jié)果:

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

下面的例子展示了 php 對(duì)象也可以被轉(zhuǎn)換為 json:

<?php
    class emp {
        public $name = "";
        public $hobbies  = "";
        public $birthdate = "";
    }
    $e = new emp();
    $e->name = "sachin";
    $e->hobbies  = "sports";
    $e->birthdate = date('m/d/y h:i:s a', strtotime("8/5/1974 12:20:03"));

    echo json_encode($e);
?>

執(zhí)行時(shí)會(huì)生成如下所示結(jié)果:

{"name":"sachin","hobbies":"sports","birthdate":"08\/05\/1974 12:20:03 pm"}

4. 使用 php 解碼 json(json_decode)

php 的 json-decode() 函數(shù)用于在 php 中解碼 json。這個(gè)函數(shù)返回從 json 解碼到適當(dāng) php 類型的值。

語法:

mixed json_decode ($json [,$assoc = false [, $depth = 512 [, $options = 0 ]]])

參數(shù):

  • __json_string:__ 編碼的字符串,必須是 utf-8 編碼的數(shù)據(jù)。
  • assoc: 它是一個(gè)布爾類型的參數(shù),當(dāng)設(shè)置為 true 時(shí),返回的對(duì)象將會(huì)被轉(zhuǎn)換為關(guān)聯(lián)數(shù)組。
  • depth: 它是一個(gè)整型參數(shù),用于指定遞歸深度。
  • options: 它是一個(gè) json 解碼的整型位掩碼。支持 json_bigint_as_string。

示例:

下面例子展示了如何使用 php 解碼 json 對(duì)象:

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

    var_dump(json_decode($json));
    var_dump(json_decode($json, true));
?>

執(zhí)行時(shí)生成如下所示結(jié)果:

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)
}

下一節(jié):perl 中使用 json

json 教程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频