thinkphp5初探,Twig模版引擎的引入和使用

时间:2021-04-03 02:10:25

近来先来无事,就想看看我们国产的php框架tp5,,然后去官方看那长篇大论的文档,可是头疼的要命~~~想了个办法,去加thinkphp5的讨论群,居然被拒绝了~~~ 我的内心确实很崩溃,,处理的管理员叼不一般呢,,呃, 大概这就是国内的学习氛围释然吧,这里我还是要批评洋葱,,这个给人暴发户一般的tp5的管理员,

好了,进入正题了,tp5确实集成很多先进的开发概念,,上手做项目大概两三天之内吧,也有非常的强的拓展性,,在我看来模块这个概念跟symfony的bundle是一样的,有symfony经验的估计上手更快..

第一步,    /vendor

进入到tp5目录的vendor目录下;;如果安装了composer的可以直接用composer require "twig/twig:~1..0"这条命令来下载我们的twig源码包,

没有安装composer的可以手动去官下载,解压到那个位置


thinkphp5初探,Twig模版引擎的引入和使用

第二步, thinkphp/library/think/view/driver

进入到上面这个目录下,创建一个叫做Twig.php的文件thinkphp5初探,Twig模版引擎的引入和使用

代码如下:

<?php
namespace think\view\driver;

use think\App;
use think\exception\TemplateNotFoundException;
use think\Log;
use think\Request;
use think\Template;

class Twig{

    protected $config = [
        // 模板起始路径
        'view_path'   => '',
        // 模板文件后缀
        'view_suffix' => 'Twig',
        // 模板文件名分隔符
        'view_depr'   => DS,
        //Whetaher to open the template chche,set to true eveyr time the default cache
        'tpl_cache'   => true,
    ];
     public function __construct($config = [])
    {
        $this->config = array_merge($this->config, $config);
        if (empty($this->config['view_path'])) {
            $this->config['view_path'] = App::$modulePath . 'view' . DS;
        }
        $this->template = new Template($this->config);
    }

    /**
     * 检测是否存在模板文件
     * @access public
     * @param string $template 模板文件或者模板规则
     * @return bool
     */
    public function exists($template)
    {
        if ('' == pathinfo($template, PATHINFO_EXTENSION)) {
            // 获取模板文件名
            $template = $this->parseTemplate($template);
        }
        return is_file($template);
    }
    /**
     * 渲染模板文件
     * @access public
     * @param string    $template 模板文件
     * @param array     $data 模板变量
     * @return void
     */
     public function fetch($template, $data = [])
    {
        if ('' == pathinfo($template, PATHINFO_EXTENSION)) {
            // 获取模板文件名
            $template = $this->parseTemplate($template);
        }
        // 模板不存在 抛出异常
        if (!is_file($template)) {
            throw new TemplateNotFoundException('template not exists:' . $template, $template);
        }
        // 记录视图信息
        App::$debug && Log::record('[ VIEW ] ' . $template . ' [ ' . var_export(array_keys($data), true) . ' ]', 'info');
        extract($data, EXTR_OVERWRITE);
        include $template;
    }
    /**
     * 渲染模板内容
     * @access public
     * @param string    $template 模板内容
     * @param array     $data 模板变量
     * @param array     $config 模板参数
     * @return void
     */
    public function display($template, $data = [], $config = [])
    {
        $this->template->display($template, $data, $config);
    }

    /**
     * 自动定位模板文件
     * @access private
     * @param string $template 模板文件规则
     * @return string
     */
    private function parseTemplate($template)
    {
        // 获取视图根目录
        if (strpos($template, '@')) {
            // 跨模块调用
            list($module, $template) = explode('@', $template);
            $path                    = APP_PATH . $module . DS . 'view' . DS;
        } else {
            // 当前视图目录
            $path = $this->config['view_path'];
        }

       
        // 分析模板文件规则
        $request    = Request::instance();
        $controller = $request->controller();
        if ($controller && 0 !== strpos($template, '/')) {
            $depr     = $this->config['view_depr'];
            $template = str_replace(['/', ':'], $depr, $template);
            if ('' == $template) {
                // 如果模板文件名为空 按照默认规则定位
                $template = str_replace('.', DS, $controller) . $depr . $request->action();
            } elseif (false === strpos($template, $depr)) {
                $template = str_replace('.', DS, $controller) . $depr . $template;
            }
        }
        return $path . ltrim($template, '/') . '.' . ltrim($this->config['view_suffix'], '.');
    }

    public function __call($method, $params)
    {
        return call_user_func_array([$this->template, $method], $params);
    }


}

第三步:来到我们的项目,进入大家都熟悉的配置里:项目文件/开发目录/config.php中修改配置参数即可


// 模板引擎类型 支持 php think 支持扩展
        'type'         => 'Twig',
        // 模板路径
        'view_path'    => '',
        // 模板后缀
        'view_suffix'  => 'html.wendortwig',