PHP code example of schnittstabil / curty

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

    

schnittstabil / curty example snippets


// Context (variable lookup table)
$ctx = [
    'user' => [
        'login' => 'curt',
        'phone' => [
            'internal' => 1337,
        ],
    ],
    'unicorn' => '{user.login}: {user.phone.internal}',
    'lazy' => function ($ctx) : string {
        return date('z').' {unicorn}';
    },
];

/*
 * Simple rendering
 */
use Schnittstabil\Curty;

echo Curty\render('{user.login}', $ctx); // => 'curt'
echo Curty\render('{unicorn}', $ctx);    // => '{user.login}: {user.phone.internal}'
echo Curty\render('{lazy}', $ctx);       // => '42 {unicorn}'

/*
 * Fixed-point rendering
 */
use function Schnittstabil\curty;

echo curty('{user.login}', $ctx); // => 'curt'
echo curty('{unicorn}', $ctx);    // => 'curt: 1337'
echo curty('{lazy}', $ctx);       // => '42 curt: 1337'