otaavioo/json

A light package for json encode/decode functions

2.1.0 2024-04-26 14:44 UTC

This package is auto-updated.

Last update: 2024-04-26 16:57:57 UTC


README

Build Coverage Status

A light package for json encode/decode functions

Installing

composer require otaavioo/json ^2.0

Encode

    // Instantiate the class
    $json = new Json();

    $array = ['key' => 'value'];

    // And then, get encoded json
    echo $json->encode($array);

Decode

    // Instantiate the class
    $json = new Json();

    $string = '{"key":"value"}';

    // And then, get decoded json
    echo $json->decode($string);

    // And if you have a doubly encoded json, like this
    $string = '{\"key\":\"value\"}';

    // The decode method will return the same object as before
    echo $json->decode($string);

Valid

    // Instantiate the class
    $json = new Json();

    $string = '{"key":"value"}';

    // And then, check if is valid
    echo $json->isValid($string);

Developing

  • To install dependencies, please, run composer install

Testing

  • You can simply run php vendor/bin/phpunit to test using PHPUnit