PHP code example of craffft / single-session-storage-bundle

1. Go to this page and download the library: Download craffft/single-session-storage-bundle 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/ */

    

craffft / single-session-storage-bundle example snippets



// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new Craffft\SingleSessionStorageBundle\CraffftSingleSessionStorageBundle(),
        );

        // ...
    }

    // ...
}


// AppBundle/Controller/DemoController.php

// ...
class DemoController extends Controller
{
    public function myAction()
    {
        // Set data via service
        $singleSessionStorage = $this->container->get('craffft.single_session_storage');
        $singleSessionStorage->setNamespace('testStorage'); // optional
        $singleSessionStorage->set('key', 'value');
        $singleSessionStorage->saveSession();
        
        // Set data via class
        $singleSessionStorage = new SingleSessionStorage($this->container, 'testStorage');
        $singleSessionStorage->set('key', 'value');
        $singleSessionStorage->saveSession();
        
        // ...
    }

    // ...
}