PHP 库,用于编码和解码 JSON

v1.0 2016-07-22 09:16 UTC

This package is not auto-updated.

Last update: 2024-09-18 19:18:06 UTC


README

API

要使用此库,请参阅以下示例

 <?php
 require_once 'vendor/autoload.php';

 $data = [
     'a' => 'test',
     'b' => 'test'
 ];
 $jsondata = \phptestsoft\Json::encode($data);
 print_r($jsondata);

 $data2 = \phptestsoft\Json::decode($jsondata);
 print_r($data2);

许可证

Apache License 2.0 许可证下发布;

https://apache.ac.cn/licenses/LICENSE-2.0