您好,欢迎光临本网站![请登录][注册会员]  
文件名称: PHP的JSON扩展源码实现(json-1.2.1)
  所属分类: C
  开发工具:
  文件大小: 17kb
  下载次数: 0
  上传时间: 2013-08-10
  提 供 者: wang_h*******
 详细说明: PHP的json_encode函数和json_decode函数的C语言实现。 C语言是非常强大的,众所周知PHP、MySQL、Apache等等都是由C语言开发然后编译而成的。本源码是PHP的JSON扩展的C语言源码实现。如果你是PHPer,你将更深入的了解C语言是如何强大,也会对PHP的底层代码实现有更深入的了解,这对我们技术的提高有很大帮助。。。 以下为英文介绍: json 1.2.0 ========== This extension implements the JavaScript Object Notation (JSON) data-interchange format as specified in [0]. Two functions are implemented: encoding and decoding. The decoding is handled by a parser based on JSON_checker[1] by Douglas Crockford. Function overview ----------------- string json_encode ( mixed value ) json_encode returns a string containing the JSON representation of value. value can be any type except a resource. mixed json_decode ( string json, [bool assoc] ) json_decode takes a JSON string and converts it into a PHP variable. When assoc is given, and evaluates to TRUE, json_decode() will return any objects as associative arrays. Example usage ------------- $arr = array("a"=>1,"b"=>2,"c"=>3,"d"=>4,"e"=>5); echo json_encode($arr); ---> {"a":1,"b":2,"c":3,"d":4,"e":5} $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; var_dump(json_decode($json)); ---> object(stdClass)#1 (5) { ["a"]=> int(1) ["b"]=> int(2) ["c"]=> int(3) ["d"]=> int(4) ["e"]=> int(5) } $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}'; var_dump(json_decode($json, true)); ---> array(5) { ["a"]=> int(1) ["b"]=> int(2) ["c"]=> int(3) ["d"]=> int(4) ["e"]=> int(5) } ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: json c php
 输入关键字,在本站1000多万海量源码库中尽情搜索: