Home  >  Article  >  Backend Development  >  ajax3—php(29),ajax3php29_PHP教程

ajax3—php(29),ajax3php29_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:53:11943browse

ajax3—php(29),ajax3php29

一、Ajax中应用json

对于大批量数据的处理:

1)  xml

2)  json

1、  关于json

对象就是属性的无序集合

在js中,可以使用{} 来模拟属性的无序集合

1、  关于php中的json

目前,绝大多数ajax程序都使用json对象做数据的传递方式,所以在很多语言中,都内置了对json对象的支持。在php中,有这样两个函数,用于对json进行编码和解码

l  string json_encode ( mixed $value )

生成json格式的字符串

l  mixed json_decode ( string $json [, bool])

对json进行解析

第二个参数表示解析到数组中还是对象中,默认是false,表示解析到对象中

1)  json_encode

如果想得到json格式的数据,必须先得到一个数组或对象

2)  json_decode

3)  json_decode

Json目前只支持utf-8格式

3、  Ajax使用json

例1:使用json返回两个数的四则运算

服务器代码:

例2:从服务器返回多条数据

Ajax程序:

Php程序:

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1004400.htmlTechArticleajax3—php(29),ajax3php29 一、Ajax中应用json 对于大批量数据的处理: 1) xml 2) json 1、 关于json 对象就是属性的无序集合 在js中,可以使用...
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