PHP code example of rwillians / stingray
1. Go to this page and download the library: Download rwillians/stingray 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/ */
rwillians / stingray example snippets
use Rwillians\Stingray\Stingray;
$someArray = array(
'client' => array(
'name' = 'John Doe'
)
);
// Getting a value using dot notation:
echo Stingray::get($someArray, 'client.name'); // Outputs: 'John Doe'
// Changing a value using dot notation:
Stingray::set($someArray, 'client.name', 'Jane Doe');
// Create a new key-value to an existent array using dot notation:
Stingray::set($someArray, 'client.address', 'Some Street, 123');