1. Go to this page and download the library: Download visual-craft/utils 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/ */
visual-craft / utils example snippets
$interpolator = new \VisualCraft\Utils\StringInterpolator\StringInterpolator();
$interpolator->interpolate('Demonstration $var1 $var2. An${var3}er example \$var4', [
'var1' => 'of',
'var2' => 'interpolation',
'var3' => 'oth',
]);
// Will return:
// "Demonstration of interpolation. Another example $var4"
$interpolator->getNames('Demonstration $var1 $var2. An${var3}er example \$var4');
// Will return:
// array (
// 0 => 'var1',
// 1 => 'var2',
// 2 => 'var3',
// )