0.3.x-dev
0.3.9999999.9999999-dev
MIT
The Development Requires
0.2.x-dev
0.2.9999999.9999999-dev
MIT
The Development Requires
An object-orientated wrapper for json_encode() and json_decode() with error handling., (*1)
Developed by Florian Eckerstorfer in Vienna, Europe., (*3)
The recommended way of installing BraincraftedJson is through Composer:, (*4)
$ composer require braincrafted/json:@stable
Tip: You should replace @stable
with the most recent version from the
releases page., (*5)
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()); }
Json::DECODE_ASSOC
and Json::DECODE_OBJECT
as second argument for Json::decode()
Braincrafted
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.
MIT
MIT