이 글은 CodeIgniter가 지원하는 타사 라이브러리 third_party의 사용을 분석합니다. 참고할 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
third_party는 시스템에 도입된 타사 클래스 라이브러리를 저장하는 데 사용됩니다. 클래스 라이브러리는 일반적으로 더 풍부한 기능을 제공하며 해당 학습 비용도 더 높습니다. 시스템에서는 사용하는 기능이 제한되어 있으므로 클래스 라이브러리를 도입할 때 적절한 캡슐화를 수행하여 다른 사람이 시스템에서 사용할 때 확장된 부분에만 주의하면 됩니다. 메소드이며 특정 구현에 주의를 기울일 수 없습니다. CI 통합 Twig 템플릿을 예로 들어 보겠습니다.
먼저 Twig 클래스 라이브러리를 다운로드하여 third_party에 배치한 다음 라이브러리에 캡슐화해야 합니다. 예는 다음과 같습니다.
<?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 로드 라이브러리를 통해 로드할 때 클래스 이름과 동일한 이름의 구성 파일이 있으면 매개 변수가 자동으로 클래스 생성자에 전달됩니다. 배열 형태로.
<?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에 대한 종속성을 갖는 것이 좋습니다. 서비스를 제공하고 일부 사용자 정의 기능을 추가하면 다른 장소와 다른 시스템에서 이 클래스를 쉽게 재사용할 수 있습니다.
더 많은 codeigniter 관련 콘텐츠에 관심이 있는 독자는 이 사이트의 특별 주제인 "codeigniter 튜토리얼 소개" 및 "CI(CodeIgniter) 프레임워크에 대한 고급 튜토리얼"을 확인할 수 있습니다.
I 이 기사가 CodeIgniter 프레임워크 기반의 PHP 프로그래밍에 도움이 되는 모든 사람에게 도움이 되기를 바랍니다.
위 내용은 CodeIgniter가 지원하는 타사 클래스 라이브러리 third_party의 사용 분석 내용을 포함하여 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.