PHP library to encode and decode JSON

v1.0 2016-07-22 14:21 UTC

This package is not auto-updated.

Last update: 2024-12-25 19:32:57 UTC


README

// 1. 引入autoload.php

require './vendor/autoload.php';

$data = [ 'name' => 'zs', 'age' => 18 ];

// 调用 Json的encode静态方法 序列化数据 $jsondata = \phptestsoft8\Json::encode($data);

print_r($jsondata);