Heim >php教程 >php手册 >JSON在php中的使用

JSON在php中的使用

WBOY
WBOYOriginal
2016-06-06 19:53:141050Durchsuche

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 json_encode() 该函数主要用来将数组和对象,转换为json格式。 $arr = array ('a'='a','b'='b','c'='c','d'='d','e'='e'); echo json_encode($arr); json只接受utf-8编码的字符,json_encode

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  json_encode()

  该函数主要用来将数组和对象,转换为json格式。

  $arr = array ('a'=>'a','b'=>'b','c'='c','d'=>'d','e'='e');

  echo json_encode($arr);

  json只接受utf-8编码的字符,json_encode()的参数必须是utf-8编码。

  复制代码

  class person

  {

  public $name;

  public $age;

  public $height;

  function __construct($name,$age,$height)

  {

  $this->name = $name;

  $this->age = $age;

  $this->height = $height;

  }

  }

  $obj = new person("zhangsan",20,100);

  $foo_json = json_encode($obj);

  echo $foo_json;

  当类中的属性为私有变量的时候,则不会输出。

  json_decode()

  该函数用于将json文本转换为相应的PHP数据结构。

  $json = '{"a":"hello","b":"world","c":"zhangsan","d":20,"e":170}';

  var_dump(json_decode($json));

  通常情况下,json_decode()总是返回一个PHP对象。

  转成数组的:

  $json = '{"a":"hello","b":"world","c":"zhangsan","d":20,"e":170}';

  var_dump(json_decode($json,ture));

JSON在php中的使用

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php获取远程图片保存到本地Nächster Artikel:php字符串的操作