PHP code example of ellire / reprocess-templates

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

    

ellire / reprocess-templates example snippets



return [
    //...
    'domain' => 'www.example.com',
    'enable_debug' => false,
    'send_emails' => true,
    'mail_from' => '[email protected]',
    //...
];


return [
    //...
    'domain' => 'dev.example.com',
    'enable_debug' => true,
    'send_emails' => false,
    'mail_from' => '[email protected]',
    //...
];


return [
    //...
    'domain' => 'www.example.com',
    'enable_debug' => false,
    'send_emails' => true,
    'mail_from' => '[email protected]',
    //...
];