PHP code example of terranc / blade
1. Go to this page and download the library: Download terranc/blade 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/ */
terranc / blade example snippets
$path = ['/view_path']; // your view file path, it's an array
$cachePath = '/cache_path'; // compiled file path
$compiler = new \terranc\Blade\Compilers\BladeCompiler($cachePath);
// you can add a custom directive if you want
$compiler->directive('datetime', function($timestamp) {
return preg_replace('/(\(\d+\))/', ' echo date("Y-m-d H:i:s", $1);