Skip to content
This repository has been archived by the owner on Apr 13, 2021. It is now read-only.

Latest commit

 

History

History
88 lines (59 loc) · 2.5 KB

README.md

File metadata and controls

88 lines (59 loc) · 2.5 KB

Braincrafted\Json

An object-orientated wrapper for json_encode() and json_decode() with error handling.

Build Status

Developed by Florian Eckerstorfer in Vienna, Europe.

Installation

The recommended way of installing BraincraftedJson is through Composer:

$ composer require braincrafted/json:@stable

Tip: You should replace @stable with the most recent version from the releases page.

Usage

use Braincrafted\Json\Json;
use Braincrafted\Json\JsonDecodeException;

// Encode a variable as JSON:
echo Json::encode(array('name' => 'Bilbo Baggins'));

// Decode JSON:
print_r(Json::decode('{"name": "Bilbo Baggins"}'));

// Decode JSON into an array:
print_r(Json::decode('{"name": "Bilbo Baggins"}', Json::DECODE_ASSOC));

// Error handling
try {
    Json::decode('{"name": "Bilbo Baggins"'); // missing }
} catch (JsonDecodeException $e) {
    echo sprintf("Could not decode JSON.\nReason: %s", $e->getMessage());
}

Changelog

Version 0.3 (18 November 2014)

  • Switched from PSR-0 to PSR-4
  • Use Json::DECODE_ASSOC and Json::DECODE_OBJECT as second argument for Json::decode()

Version 0.2 (15 November 2013)

  • Changed namespace to Braincrafted

License

The MIT License (MIT)

Copyright (c) 2013 Florian Eckerstorfer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.