位置: 编程技术 - 正文
推荐整理分享PHP:json_encode()的用法_JSON函数(php jsondecode),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:json encode php,php json格式,php json_pretty_print,php json_encode中文,php jsonp,php json,php json_encode,php jsondecode,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 5 >= 5.2.0, PECL json >= 1.2.0)
json_encode — 对变量进行 JSON 编码
说明 string json_encode ( mixed $value [, int $options = 0 ] )返回 value 值的 JSON 形式
参数value
待编码的 value ,除了resource 类型之外,可以为任何数据类型
该函数只能接受 UTF-8 编码的数据
options由以下常量组成的二进制掩码: JSON_HEX_QUOT, JSON_HEX_TAG, JSON_HEX_AMP, JSON_HEX_APOS, JSON_NUMERIC_CHECK, JSON_PRETTY_PRINT, JSON_UNESCAPED_SLASHES, JSON_FORCE_OBJECT, JSON_UNESCAPED_UNICODE.
返回值编码成功则返回一个以 JSON 形式表示的 string 或者在失败时返回 FALSE 。
更新日志版本 说明 5.4.0 options 参数增加常量: JSON_PRETTY_PRINT, JSON_UNESCAPED_SLASHES, 和 JSON_UNESCAPED_UNICODE。 5.3.3 options 参数增加常量:JSON_NUMERIC_CHECK。 5.3.0 增加 options 参数.
范例
Example #1 A json_encode() 的例子
<?php$arr=array('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);echojson_encode($arr);?>以上例程会输出:
Example #2 json_encode() 函数中 options 参数的用法
<?php$a=array('<foo>',"'bar'",'"baz"','&blong&',"xc3xa9");echo"Normal:",json_encode($a),"n";echo"Tags:",json_encode($a,JSON_HEX_TAG),"n";echo"Apos:",json_encode($a,JSON_HEX_APOS),"n";echo"Quot:",json_encode($a,JSON_HEX_QUOT),"n";echo"Amp:",json_encode($a,JSON_HEX_AMP),"n";echo"Unicode:",json_encode($a,JSON_UNESCAPED_UNICODE),"n";echo"All:",json_encode($a,JSON_HEX_TAG|JSON_HEX_APOS|JSON_HEX_QUOT|JSON_HEX_AMP|JSON_UNESCAPED_UNICODE),"nn";$b=array();echo"Emptyarrayoutputasarray:",json_encode($b),"n";echo"Emptyarrayoutputasobject:",json_encode($b,JSON_FORCE_OBJECT),"nn";$c=array(array(1,2,3));echo"Non-associativearrayoutputasarray:",json_encode($c),"n";echo"Non-associativearrayoutputasobject:",json_encode($c,JSON_FORCE_OBJECT),"nn";$d=array('foo'=>'bar','baz'=>'long');echo"Associativearrayalwaysoutputasobject:",json_encode($d),"n";echo"Associativearrayalwaysoutputasobject:",json_encode($d,JSON_FORCE_OBJECT),"nn";?>以上例程会输出:
Example #3 连续与非连续数组示例
<?phpecho"连续数组".PHP_EOL;$sequential=array("foo","bar","baz","blong");var_dump($sequential,json_encode($sequential));echoPHP_EOL."非连续数组".PHP_EOL;$nonsequential=array(1=>"foo",2=>"bar",3=>"baz",4=>"blong");var_dump($nonsequential,json_encode($nonsequential));echoPHP_EOL."删除一个连续数组值的方式产生的非连续数组".PHP_EOL;unset($sequential[1]);var_dump($sequential,json_encode($sequential));?>以上例程会输出:
注释Note:
如果执行失败,可以通过 json_last_error() 函数来获取详细错误信息。
Note:
如果要编码的数组的键不是从0开始的数字,所有的键将会被当作字符串,并明确声明为 key-value 对。
参见JsonSerializable json_decode() - 对 JSON 格式的字符串进行编码 json_last_error() - 返回最后发生的错误
PHP:json_decode()的用法_JSON函数 json_decode(PHP5=5.2.0,PECLjson=1.2.0)json_decode对JSON格式的字符串进行编码说明mixedjson_decode(string$json[,bool$assoc=false[,int$depth=[,int$options=0]]])接受一个JSON格式的字
PHP:json_last_error()的用法_JSON函数 json_last_error(PHP5=5.3.0)json_last_error返回最后发生的错误说明intjson_last_error(void)如果有,返回JSON编码解码时最后发生的错误。参数此函数没有参数。返回值
PHP:json_last_error_msg()的用法_JSON函数 json_last_error_msg(PHP5=5.5.0)json_last_error_msgReturnstheerrorstringofthelastjson_encode()orjson_decode()call说明stringjson_last_error_msg(void)参数此函数没有参数。返回值Returnstheer
标签: php jsondecode
本文链接地址:https://www.jiuchutong.com/biancheng/284696.html 转载请保留说明!上一篇:PHP:define()的用法_misc函数(php中defined什么意思)
下一篇:PHP:json_decode()的用法_JSON函数(php json)
友情链接: 武汉网站建设