PHP library to encode and decode JSON

v2.0 2017-01-14 04:26 UTC

This package is not auto-updated.

Last update: 2025-07-23 23:07:29 UTC


README

'test', 'b' => 'test' ]; $jsondata = \mycomposer01\Json::encode($data); print_r($jsondata); $data2 = \mycomposer01\Json::decode($jsondata); print_r($data2);