PHP Classes

File: examples/testincludefast.php

Recommend this page to a friend!
  Classes of Jorge Castro   BladeOne   examples/testincludefast.php   Download  
File: examples/testincludefast.php
Role: Example script
Content type: text/plain
Description: Example script
Class: BladeOne
Standalone template engine that compiles into PHP
Author: By
Last change: Update of examples/testincludefast.php
Date: 3 years ago
Size: 597 bytes
 

Contents

Class file image Download
<?php
/**
 * Copyright (c) 2016 Jorge Patricio Castro Castillo MIT License.
 */

use eftec\bladeone\BladeOne;

include
"../lib/BladeOne.php";


$views = __DIR__ . '/views';
$compiledFolder = __DIR__ . '/compiled';
$blade=new BladeOne($views,$compiledFolder,BladeOne::MODE_DEBUG);


try {
    echo
$blade->run("Test.includefast"
       
, ["name" => "hola mundo"]);
} catch (
Exception $e) {
    echo
$e->getMessage();
}

/*
echo $blade->run("Test.hello"
    ,["name"=>"hola mundo"
        ,'records'=>$records
        ,'users'=>$users
        ,'drinks7'=>$drinks7
        ,'drinks8'=>$drinks8]);
*/