eastwest / json
Wrap JSON encoding/decoding errors in exception
Installs: 176 570
Dependents: 8
Suggesters: 0
Security: 0
Stars: 93
Watchers: 2
Forks: 5
Open Issues: 0
Requires
- php: >=7.0
Requires (Dev)
- phpunit/phpunit: ^7.2
This package is auto-updated.
Last update: 2024-10-07 08:12:01 UTC
README
Catch json_encode()
and json_decode()
errors without executing json_last_error()
. In PHP 7.3 these functions will throw an exception.
use Eastwest\Json\Json; use Eastwest\Json\JsonException; try { $json = Json::encode(['key' => 'value']); } catch (JsonException $e) { // code and message will match json_last_error() values: // @link http://php.net/manual/en/function.json-last-error.php#refsect1-function.json-last-error-returnvalues echo $e->getMessage(); echo $e->getCode(); }
Installation
You'll have to follow a couple of simple steps to install this package.
Downloading
Via composer:
$ composer require eastwest/json:^3.0
Or add the package to your development dependencies in composer.json
and run
composer update eastwest/json
to download the package:
{ "require": { "eastwest/json": "^3.0" } }
If you need a way to deploy files or manage your Laravel Forge servers. Take a look at GitFTP-Deploy or F-Bar