PHP code example of nikitin / key-storage

1. Go to this page and download the library: Download nikitin/key-storage 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/ */

    

nikitin / key-storage example snippets

 bash
$ php artisan vendor:publish --tag=key-storage
 php
...
 \nikitin\KeyStorage\KeyStorageServiceProvider::class
...
 bash
$ php artisan key-storage:create-table
 php
use nikitin\KeyStorage\Facades\KeyStorage;
...

KeyStorage::set('test', [1,2,3,4,5,'test'=>321]);

KeyStorage::get('test');
result: 
    array:6 [
          0 => 1
          1 => 2
          2 => 3
          3 => 4
          4 => 5
          "test" => 321
        ]
        
// If you need key type
  KeyStorage::getType('test');
  result: "array"

$inst = KeyStorage::getSelf();
$inst->set('key', 'value');
$result = $inst->get('key');