黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

PHP JSON

 

1. 環(huán)境配置

在 php5.2.0 及以上版本已經(jīng)內(nèi)置 json 擴(kuò)展。

 

2. json 函數(shù)

函數(shù) 描述
json_encode 對變量進(jìn)行 json 編碼
json_decode 對 json 格式的字符串進(jìn)行解碼,轉(zhuǎn)換為 php 變量
json_last_error 返回最后發(fā)生的錯誤

 

3. json_encode

php json_encode() 用于對變量進(jìn)行 json 編碼,該函數(shù)如果執(zhí)行成功返回 json 數(shù)據(jù),否則返回 false 。

語法

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

參數(shù)

  • value: 要編碼的值。該函數(shù)只對 utf-8 編碼的數(shù)據(jù)有效。
  • options:由以下常量組成的二進(jìn)制掩碼 json_hex_quot, json_hex_tag, json_hex_amp, json_hex_apos, json_numeric_check, json_pretty_print, json_unescaped_slashes, json_force_object, json_preserve_zero_fraction, json_unescaped_unicode, json_partial_output_on_error。

    要注意的是 json_unescaped_unicode 選項,如果我們不希望中文被編碼,可以添加該選項。

范例

以下范例演示了如何將 php 數(shù)組轉(zhuǎn)換為 json 格式數(shù)據(jù):

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

以上代碼執(zhí)行結(jié)果為:

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

以下范例演示了如何將 php 對象轉(zhuǎn)換為 json 格式數(shù)據(jù):

<?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', "8/5/1974 12:20:03 p");
   $e->birthdate = date('m/d/y h:i:s a', strtotime("8/5/1974 12:20:03"));

   echo json_encode($e);
?>

以上代碼執(zhí)行結(jié)果為:

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

 

4. 使用 json_unescaped_unicode 選項

<?php
   $arr = array('yapf' => '碩編程', 'taobao' => '淘寶網(wǎng)');
   echo json_encode($arr); // 編碼中文
   echo php_eol;  // 換行符
   echo json_encode($arr, json_unescaped_unicode);  // 不編碼中文
?>

以上代碼執(zhí)行結(jié)果為:

{"yapf":"\u83dc\u9e1f\u6559\u7a0b","taobao":"\u6dd8\u5b9d\u7f51"}
{"yapf":"碩編程","taobao":"淘寶網(wǎng)"}

 

5. json_decode

php json_decode() 函數(shù)用于對 json 格式的字符串進(jìn)行解碼,并轉(zhuǎn)換為 php 變量。

語法

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

參數(shù)

  • json_string: 待解碼的 json 字符串,必須是 utf-8 編碼數(shù)據(jù)
  • assoc: 當(dāng)該參數(shù)為 true 時,將返回數(shù)組,false 時返回對象。
  • depth: 整數(shù)類型的參數(shù),它指定遞歸深度
  • options: 二進(jìn)制掩碼,目前只支持 json_bigint_as_string 。

范例

以下范例演示了如何解碼 json 數(shù)據(jù):

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

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

以上代碼執(zhí)行結(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)
}
相關(guān)文章