sy-records/blade
最新稳定版本:v7.0.3
Composer 安装命令:
composer require sy-records/blade
包简介
an independent version of laravel view template - blade
README 文档
README
This is a view templating engine which is extracted from Laravel. It's independent without relying on Laravel's Container or any others.
Installation
With Composer, you just need to run
composer require luoyy/blade
If you haven't use composer, you should add all the files in folder src to your project folder,
and then require them in your code.
If you need to run on php5, switch to the php5 branch
Usage
<?php require './vendor/autoload.php'; use luoyy\Blade\Compilers\BladeCompiler; use luoyy\Blade\Engines\CompilerEngine; use luoyy\Blade\Engines\EngineResolver; use luoyy\Blade\Engines\FileEngine; use luoyy\Blade\Engines\PhpEngine; use luoyy\Blade\Factory; use luoyy\Blade\Filesystem\Filesystem; use luoyy\Blade\FileViewFinder; $path = ['view_path']; // your view file path, it's an array $cachePath = '/cache_path'; // compiled file path $file = new Filesystem; $compiler = new BladeCompiler($file, $cachePath); // you can add a custom directive if you want $compiler->directive('datetime', function ($timestamp) { return preg_replace('/(\(\d+\))/', '<?php echo date("Y-m-d H:i:s", $1); ?>', $timestamp); }); $compiler->if('env', function ($test) { return $test == '123'; }); $compiler->component('components.alert', 'alert'); $resolver = new EngineResolver; $resolver->register('file', function () { return new FileEngine; }); $resolver->register('php', function () { return new PhpEngine; }); $resolver->register('blade', function () use ($compiler) { return new CompilerEngine($compiler); }); $finder = new FileViewFinder($file, $path); // get an instance of factory $factory = new Factory($resolver, $finder); // if your view file extension is not php or blade.php, use this to add it $factory->addExtension('tpl', 'blade'); // render the template file and echo it echo $factory->make('hello', ['a' => 1, 'b' => 2])->render(); ?>
You can enjoy almost all the features of blade with this extension. However, remember that some of exclusive features are removed.
You can't:
- use
@inject@can@cannot@langin a template file - add any events or middleawares
Documentation: http://laravel.com/docs/7.x/blade
Thanks for Laravel and it authors. That is a great project.
统计信息
- 总下载量: 63
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-11-23