gpt4 book ai didi

php中JSON的使用方法

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章php中JSON的使用方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

从5.2版本开始,PHP原生提供json_encode()和json_decode()函数,前者用于编码,后者用于解码。 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编码.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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));

  。

  。

以上所述就是本文的全部内容了,希望大家能够喜欢.

最后此篇关于php中JSON的使用方法的文章就讲到这里了,如果你想了解更多关于php中JSON的使用方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com