CodeIgniter辅助之第三方类库third_party用法分析


Posted in PHP onJanuary 20, 2016

本文实例分析了CodeIgniter辅助之第三方类库third_party用法。分享给大家供大家参考,具体如下:

third_party用来存放系统中引入的第三方类库,类库通常提供的功能比较丰富,相应的学习成本也要高些,系统中能用到功能有限,所以建议在引入类库时进行适当的封装,让系统中更方便使用,其他人使用时只需关注扩展的方法而无法关注具体的实现。以CI集成Twig模版为例吧。

首先需要下载Twig类库,并放在third_party中,然后在libraries中进行一次封装,示例如下:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
require APPPATH.'third_party/Twig/Autoloader.php';
/**
 * Twig模版引擎
 *
 */
class Twig
{
  public $twig;
  public $config;
  private $data = array();
  /**
   * 读取配置文件twig.php并初始化设置
   * 
   */
  public function __construct($config)
  {
    $config_default = array(
      'cache_dir' => false,
      'debug' => false,
      'auto_reload' => true,
      'extension' => '.tpl',
    );
    $this->config = array_merge($config_default, $config);
    Twig_Autoloader::register ();
    $loader = new Twig_Loader_Filesystem ($this->config['template_dir']);
    $this->twig = new Twig_Environment ($loader, array (
        'cache' => $this->config['cache_dir'],
        'debug' => $this->config['debug'],
        'auto_reload' => $this->config['auto_reload'], 
    ) );
    $CI = & get_instance ();
    $CI->load->helper(array('url'));
    $this->twig->addFunction(new Twig_SimpleFunction('site_url', 'site_url'));
    $this->twig->addFunction(new Twig_SimpleFunction('base_url', 'base_url'));
  }
  /**
   * 给变量赋值
   * 
   * @param string|array $var
   * @param string $value
   */
  public function assign($var, $value = NULL)
  {
    if(is_array($var)) {
      foreach($val as $key => $val) {
        $this->data[$key] = $val;
      }
    } else {
      $this->data[$var] = $value;
    }
  }
  /**
   * 模版渲染
   * 
   * @param string $template 模板名
   * @param array $data 变量数组
   * @param string $return true返回 false直接输出页面
   * @return string
   */
  public function render($template, $data = array(), $return = FALSE)
  {
    $template = $this->twig->loadTemplate ( $this->getTemplateName($template) );
    $data = array_merge($this->data, $data);
    if ($return === TRUE) {
      return $template->render ( $data );
    } else {
      return $template->display ( $data );
    }
  }
  /**
   * 获取模版名
   * 
   * @param string $template
   */
  public function getTemplateName($template)
  {
    $default_ext_len = strlen($this->config['extension']);
    if(substr($template, -$default_ext_len) != $this->config['extension']) {
      $template .= $this->config['extension'];
    }
    return $template;
  }
  /**
   * 字符串渲染
   * 
   * @param string $string 需要渲染的字符串
   * @param array $data 变量数组
   * @param string $return true返回 false直接输出页面
   * @return string
   */
  public function parse($string, $data = array(), $return = FALSE)
  {
    $string = $this->twig->loadTemplate ( $string );
    $data = array_merge($this->data, $data);
    if ($return === TRUE) {
      return $string->render ( $data );
    } else {
      return $string->display ( $data );
    }
  }
}
/* End of file Twig.php */
/* Location: ./application/libraries/Twig.php */

模版的操作通常有一些配置的信息,这里通过config下的twig.php进行配置,通过CI load library的方式加载时,与类名同名的配置文件存在时,会自动以数组的方式将参数传入类的构造函数。

<?php
// 默认扩展名
$config['extension'] = ".tpl";
// 默认模版路劲
$config['template_dir'] = APPPATH . "views/";
// 缓存目录
$config['cache_dir'] = APPPATH . "cache/twig/";
// 是否开启调试模式
$config['debug'] = false;
// 自动刷新
$config['auto_reload'] = true;
/* End of file twig.php */
/* Location: ./application/config/twig.php */

为了加载base_url site_url等函数到模版,类与CI产生了依赖,分离开可能更好,比如在serice中进行一次封装,增加一些自定义函数等,这样其他地方、其他系统也就很方便复用该类了。

希望本文所述对大家基于CodeIgniter框架的PHP程序设计有所帮助。

PHP 相关文章推荐
php中神奇的fastcgi_finish_request
May 02 PHP
php自定义函数call_user_func和call_user_func_array详解
Jul 14 PHP
php递归创建和删除文件夹的代码小结
Apr 13 PHP
从零开始学YII2框架(六)高级应用程序模板
Aug 20 PHP
PHP之预定义接口详解
Jul 29 PHP
深入讲解PHP Session及如何保持其不过期的方法
Aug 18 PHP
php微信开发之批量生成带参数的二维码
Jun 26 PHP
thinkphp隐藏index.php/home并允许访问其他模块的实现方法
Oct 13 PHP
PHPMailer使用QQ邮箱实现邮件发送功能
Aug 18 PHP
php框架CodeIgniter使用redis的方法分析
Apr 13 PHP
Yii2框架redis基本应用示例
Jul 13 PHP
Laravel登录失败次数限制的实现方法
Aug 26 PHP
CodeIgniter扩展核心类实例详解
Jan 20 #PHP
CodeIgniter视图使用注意事项
Jan 20 #PHP
CodeIgniter读写分离实现方法详解
Jan 20 #PHP
PHP实现微信网页授权开发教程
Jan 19 #PHP
CodeIgniter配置之SESSION用法实例分析
Jan 19 #PHP
CodeIgniter配置之routes.php用法实例分析
Jan 19 #PHP
CodeIgniter配置之config.php用法实例分析
Jan 19 #PHP
You might like
js代码实现微博导航栏
2015/07/30 PHP
PHP数据分析引擎计算余弦相似度算法示例
2017/08/08 PHP
PHP回调函数概念与用法实例分析
2017/11/03 PHP
游览器中javascript的执行过程(图文)
2012/05/20 Javascript
使用JQuery 加载页面时调用JS的实现方法
2016/05/30 Javascript
ES6中Iterator与for..of..遍历用法分析
2017/03/31 Javascript
JS实现的Unicode编码转换操作示例
2017/04/28 Javascript
Vue.js列表渲染绑定jQuery插件的正确姿势
2017/06/29 jQuery
Vue.js中的图片引用路径的方式
2017/07/28 Javascript
Angular.js中$resource高大上的数据交互详解
2017/07/30 Javascript
React Native预设占位placeholder的使用
2017/09/28 Javascript
Vue实现美团app的影院推荐选座功能【推荐】
2018/08/29 Javascript
M2实现Nodejs项目自动部署的方法步骤
2019/05/05 NodeJs
json数据格式常见操作示例
2019/06/13 Javascript
vue+iview实现文件上传
2020/11/17 Vue.js
python创建线程示例
2014/05/06 Python
解决python通过cx_Oracle模块连接Oracle乱码的问题
2018/10/18 Python
python pytest进阶之fixture详解
2019/06/27 Python
python如何从文件读取数据及解析
2019/09/19 Python
浅谈matplotlib默认字体设置探索
2021/02/03 Python
英国HYPE双肩包官网:英国本土时尚潮牌
2018/09/26 全球购物
介绍下Java中==和equals的区别
2013/09/01 面试题
专科文秘应届生求职信
2013/11/18 职场文书
网络工程师专家职业发展路线
2014/02/14 职场文书
酒店保安领班职务说明书
2014/03/04 职场文书
2014高考励志标语
2014/06/05 职场文书
医院保洁服务方案
2014/06/11 职场文书
汽车销售助理岗位职责
2015/04/14 职场文书
房地产销售助理岗位职责
2015/04/14 职场文书
2015年城管个人工作总结范文
2015/04/20 职场文书
家长对学校的意见和建议
2015/06/03 职场文书
创业计划书之都市休闲农庄
2019/12/28 职场文书
详解Nginx启动失败的几种错误处理
2021/04/01 Servers
redis复制有可能碰到的问题汇总
2022/04/03 Redis
tomcat正常启动但网页却无法访问的几种解决方法
2022/05/06 Servers
Redis 报错 error:NOAUTH Authentication required
2022/05/15 Redis