PHP Classes

File: examples/testjson.php

Recommend this page to a friend!
  Classes of Jorge Castro   BladeOne   examples/testjson.php   Download  
File: examples/testjson.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/testjson.php
Date: 3 years ago
Size: 579 bytes
 

Contents

Class file image Download
<?php
/**
 * Copyright (c) 2016-2017 Jorge Patricio Castro Castillo MIT License.
 */
include "../lib/BladeOne.php";
use
eftec\bladeone\BladeOne;

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


$drinks= array('Cocacola','Pepsi','Fanta','Sprite','7up');
$json=json_encode($drinks);
header('Content-Type: application/json');
try {
    echo
$blade->run("TestJson.example", ['json' => $json]);
} catch (
Exception $e) {
    echo
"error found ".$e->getMessage()."<br>".$e->getTraceAsString();
}