PHP自定义函数格式化json数据示例
程序员文章站
2024-02-28 22:49:10
本文实例讲述了php自定义函数格式化json数据的方法。分享给大家供大家参考,具体如下:
本文实例讲述了php自定义函数格式化json数据的方法。分享给大家供大家参考,具体如下:
<?php /** * formats a json string for pretty printing * * @param string $json the json to make pretty * @param bool $html insert nonbreaking spaces and <br />s for tabs and linebreaks * @return string the prettified output */ $arr = array("ret"=>0,"data"=>array('a' => 1, 'b' => "", 'c' => 3, 'd' => 4, 'e' => 5)); $json = json_encode($arr); function _format_json($json, $html = false) { $tabcount = 0; $result = ''; $inquote = false; $ignorenext = false; if ($html) { $tab = " "; $newline = "<br/>"; } else { $tab = "\t"; $newline = "\n"; } for($i = 0; $i < strlen($json); $i++) { $char = $json[$i]; if ($ignorenext) { $result .= $char; $ignorenext = false; } else { switch($char) { case '{': $tabcount++; $result .= $char . $newline . str_repeat($tab, $tabcount); break; case '}': $tabcount--; $result = trim($result) . $newline . str_repeat($tab, $tabcount) . $char; break; case ',': $result .= $char . $newline . str_repeat($tab, $tabcount); break; case '"': $inquote = !$inquote; $result .= $char; break; case '\\': if ($inquote) $ignorenext = true; $result .= $char; break; default: $result .= $char; } } } return $result; } echo _format_json($json); /* { "ret": 0, "data": { "a": 1, "b": "\u811a\u672c\u4e4b\u5bb6", "c": 3, "d": 4, "e": 5 } } **/ ?>
ps:这里再为大家推荐几款比较实用的json在线工具供大家参考使用:
在线json代码检验、检验、美化、格式化工具:
json在线格式化工具:
在线xml/json互相转换工具:
json代码在线格式化/美化/压缩/编辑/转换工具:
c语言风格/html/css/json代码格式化美化工具:
更多关于php相关内容感兴趣的读者可查看本站专题:《php中json格式数据操作技巧汇总》、《php针对xml文件操作技巧总结》、《php基本语法入门教程》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家php程序设计有所帮助。
推荐阅读
-
PHP自定义函数格式化json数据示例
-
PHP自定义函数实现格式化秒的方法
-
php自定义函数实现JS的escape的方法示例
-
分享一个 PHP 版的 JSON 数据格式化函数
-
php自定义中文字符串截取函数substr_for_gb2312及substr_for_utf8示例
-
2个自定义的PHP in_array 函数,解决大量数据判断in_array的效率_PHP
-
php json_encode()函数返回json数据实例代码,json_encodejson
-
2个自定义的PHP in_array 函数,解决大量数据判断in_array的效率问题
-
php+Ajax处理xml与json格式数据的方法示例
-
PHP 防注入函数格式化数据