1. Go to this page and download the library: Download vnn/keyper library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vnn / keyper example snippets
$data = [
'key1' => 'hello',
'nested' => [
'one' => 1,
'two' => 2,
'three' => [
'four' => 5
]
]
];
$keyper = Keyper::create($data);
//do something with a single value
$keyper->when('key1', function($value){
//$value == 'hello'print $value;
});
//drill down a nested array
$keyper->when('nested.three.four', function($value){
//$value == 5print $value;
});
//do something with multiple keys
$keyper->when(['nested.one', 'nested.two'], function($one, $two){
//$one == 1//$two == 2print $one + $two;
});
//compose several functions
$keyper->when(['nested.one', 'nested.two'], function($sum){
//$sum == 3print $sum;
}, function($one, $two){
//$one == 1//$two == 2return $one + $two; //this result gets passed to the function using $sum
});
//if you need all the specified keys to be present, use whenAll
$keyper->whenAll(['nested.one', 'nested.two'], function($one, $two){
//$one == 1//$two == 2print $one + $two;
});
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.