PHP code example of icosillion / secret-keeper
1. Go to this page and download the library: Download icosillion/secret-keeper 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/ */
icosillion / secret-keeper example snippets
use Icosillion\SecretKeeper\SecretKeeper;
$secretKeeper = new SecretKeeper();
echo $secretKeeper->load('testsecret');
use Icosillion\SecretKeeper\SecretKeeper;
$secretKeeper = new SecretKeeper();
$secrets = $secretKeeper->loadAll();
foreach ($secrets as $key => $value) {
echo "$key => $value\n";
}
use Icosillion\SecretKeeper\SecretKeeper;
$secretKeeper = new SecretKeeper();
$secretKeeper->populateEnvironment();
echo "testsecret (superglobal): {$_ENV['testsecret']}\n";
echo 'testsecret (getenv): ' . getenv('testsecret') . "\n";