PHP code example of raphhh / balloon

1. Go to this page and download the library: Download raphhh/balloon library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

raphhh / balloon example snippets


$balloonFactory = new BalloonFactory();
$balloon = $balloonFactory->create('path/to/my/file.json', 'My\Class', 'pkPropertyName');

$objects = $balloon->getAll();
var_dump($objects); // contains an array of the objects of your file

$balloon->add($myObject);
$balloon->flush();

$balloon->modify($id, $myObject);
$balloon->flush();

$balloon->remove($id);
$balloon->flush();

$balloonFactory = new BalloonFactory();
$balloon = $balloonFactory->create('path/to/my/file.json');

$dataList = $balloon->getAll();
var_dump($dataList); // contains an array of the data of your file

$balloon->add(['key1' => 'value1']);
$balloon->flush();

$balloon->modify($id, ['key1' => 'value1']);
$balloon->flush();

$balloon->remove($id);
$balloon->flush();

$balloon->getAll(); //first time, we read the file
$balloon->getAll(); //next times, we read the cache

$balloon->getAll(); //we read the file
$balloon->invalidate();
$balloon->getAll(); //we read the file

$balloon->add($data); //nothing added into the file
$balloon->flush(); //now only, we put $data into the file

$balloon->add($data); //nothing added into the file
$balloon->clear(); //your previous modification has been canceled.

namespace Bar;

//declare the annotation namespace
use JMS\Serializer\Annotation\Type;

//register the doctrine auto load
AnnotationRegistry::registerLoader('class_exists');

//declare the data class
class Foo
{
    /**
     * @Type("string")
     */
    private $name;
}

//declare the class in Balloon
$balloonFactory = new BalloonFactory();
$balloon = $balloonFactory->create('path/to/my/file.json', 'Bar\Foo');

$serializer = JMS\Serializer\SerializerBuilder::create()->build();
$balloonFactory = new BalloonFactory(null, $serializer);

//declare the data class
class Foo
{
    ...
}

//declare the collection
class Foos extends \ArrayObject
{
    ...
}

//run Balloon
$balloonFactory = new BalloonFactory();
$balloon = $balloonFactory->create('path/to/my/file.json', 'Foo');
$balloon->getAll(); //return an instance of Foos

//declare Gaufrette
$adapter = new LocalAdapter('/var/media');
$filesystem = new Filesystem($adapter);

//declare Ballooon
$gaufretteAdapter = new GaufretteAdapter($filesystem)
$balloonFactory = new BalloonFactory($gaufretteAdapter);
$balloon = $balloonFactory->create('path/to/my/file.json');

class BeachBall extends Balloon
{
    //your own methods here...
}

class BeachBallFactory extends BalloonFactory
{
    protected function getClassName()
    {
        return 'BeachBall';
    }
}

$beachBallFactory = new BeachBallFactory();
$beachBall = $beachBallFactory->create('path/to/my/file.json');
$beachBall->getAll();