guanguans/json-format

格式化JSON字符串。

v1.1.2 2020-09-24 08:33 UTC

This package is auto-updated.

Last update: 2024-09-24 17:07:42 UTC


README

格式化JSON字符串。

Build Status Build Status Scrutinizer Code Quality codecov StyleCI Total Downloads Latest Stable Version License

要求

  • PHP > 5.4
  • ext-json

安装

$ composer require guanguans/json-format -v

用法

代码

<?php
require __DIR__.'/vendor/autoload.php';

$json = <<<'JSON'
{"name":"json-format","keywords":["json","format","pretty"],"description":"Format json string."}
JSON;

echo json_format($json);

输出

{
    "name": "json-format",
    "keywords": [
        "json",
        "format",
        "pretty"
    ],
    "description": "Format json string."
}

测试

$ composer test

许可证

MIT