Download the PHP package ehough/jameson without Composer
On this page you can find all versions of the php package ehough/jameson. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ehough/jameson
More information about ehough/jameson
Files in ehough/jameson
Download ehough/jameson
More information about ehough/jameson
Files in ehough/jameson
Vendor ehough
Package jameson
Short Description JSON encoder/decoder compatible with PHP 5.1 and above.
License MPL-2.0
Homepage https://github.com/ehough/jameson
Package jameson
Short Description JSON encoder/decoder compatible with PHP 5.1 and above.
License MPL-2.0
Homepage https://github.com/ehough/jameson
Please rate this library. Is it a good library?
Informations about the package jameson
jameson
This library is no longer maintained. JSON encoder/decoder compatible with PHP 5.1.3 and above. This library will use PHP's builtin
json_encode()
and json_decode()
when available.
$input = array('a' => 1, 'b' => 2, 'c' => 3);
$encoder = new ehough_jameson_impl_FastEncoder(); //implements ehough_jameson_api_Encoder
$decoder = new ehough_jameson_impl_FastDecoder(); //implements ehough_jameson_api_Decoder
$asJson = $encoder->encode($input); //{"a":1,"b":2,"c":3}
$result = $decoder->decode($asJson); //array('a' => 1, 'b' => 2, 'c' => 3);
All versions of jameson with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.1.0
The package ehough/jameson contains the following files
Loading the files please wait ....