php library to encode and decode json

dev-master 2017-08-08 08:31 UTC

This package is not auto-updated.

Last update: 2025-05-20 21:26:10 UTC


README

DemoCode

<?php 
require './vendor/autoload.php'; //引入自动加载文件

$data=['name'=>'zhangsan',
		'age'=>'27'
];

$jsondata= \phpcomposer\Json::encode($data); //调用json文件中的方法
print_r($jsondata);