sgmendez / jsonbundle
Symfony2 bundle for json encode and decode
v1.0.2
2015-03-24 00:28 UTC
Requires
- php: >=5.4.0
- symfony/framework-bundle: >=2.0.0
This package is not auto-updated.
Last update: 2024-11-09 18:47:53 UTC
README
Library Json integration Symfony2 bundle.
Instalación
You can use Composer to use this library in your application.
If you don't have Composer yet, download it following the instructions on http://getcomposer.org/ or just run the following command:
curl -s http://getcomposer.org/installer | php
And then execute this command to add libary to your project:
$ composer require sgmendez/jsonbundle
Or require sgmendez/json
into your composer.json
file:
json
{
"require": {
"sgmendez/jsonbundle": "*"
}
}
Register bundle on appKernel:
// app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Sgmendez\Bundle\JsonBundle\JsonBundle(), // ... ); }
Use
For string JSON data:
php
$json = $this->get('json.parser');
$a = $json->decode($stringJson);
For local file JSON data:
php
$json = $this->get('json.parser');
$a = $json->decodeFile('file.json');
For remote file JSON data:
php
$json = $this->get('json.parser');
$a = $json->decodeFile('http://ip.jsontest.com/');
License
Licensed under the BSD License: