PHP code example of stolfam / conf-storage-php
1. Go to this page and download the library: Download stolfam/conf-storage-php 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/ */
stolfam / conf-storage-php example snippets
composer
$baseSaveDir = __DIR__ . "/your/path";
$namespace = "yourNamespace";
$confStorage = new ConfStorage($baseSaveDir, $namespace);
$signature = "yourSignatureOrSecretPassword";
$confStorage->setSignature($signature);