Home  >  Article  >  php教程  >  接口返回数据用xml好还是json理解

接口返回数据用xml好还是json理解

PHP中文网
PHP中文网Original
2016-06-08 17:20:151614browse

    现在移动端兴起,很多地方都要运用接口为它们传输数据,那么是用xml好还是用json好呢?个人觉得用json是不错的选择。我从以下几点分析一下:

1. xml标签要成对的书写,比如

XXXXXX,而json写法是{"name":"XXX","name":"XXX"},

所以很明显json更节约传输的容量。

2. json生成和解析数据都比较简单,以php为例,只需用一个json_encode函数就可以将一个数组转为json数据了,而xml生成过程相对会麻烦一点。

3. json扩展比较方便,解析速度也较快一点。

所以项目中没有特别的规定,还是用json比较好。

以上就是接口返回数据用xml好还是json理解的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn