PHP code example of dotink / jin

1. Go to this page and download the library: Download dotink/jin 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/ */

    

dotink / jin example snippets


$jin_parser  = new Dotink\Jin\Parser()
$jin_string  = file_get_contents('config.jin');
$config_data = $jin_parser->parse($jin_string)->get();

$config = $jin_parser->parse($jin_string);

$config->get('database.connections.default', [
	'name' => 'website',
	'host' => 'localhost',
	'user' => 'web',
	'pass' => '3ch0th3w4lRUS'
]);

$config_data = $jin_parser->parse($jin_string, FALSE)->get();

$jin_parser  = new Dotink\Jin\Parser([
	'app' => $app
]);

$jin_parser  = new Dotink\Jin\Parser([], [
	'hello' => function($name) {
		return 'Hello ' . $name;
	}
]);
js
boolValue = TRUE

php vendor/bin/phpunit --bootstrap vendor/autoload.php test/routines/