CI 버전: 2.1.4 // 현재 최신 버전
Smarty 버전: Smarty-2.6.26 // 이전에 이 버전을 사용했기 때문에, 본인의 사용 습관을 관리하기 위해 최신 버전은 사용하지 않았습니다. 여기 Smaty 버전은 모두가 이해합니다. 원리를 확장하면 사용하려는 Smatry 버전을 선택할 수 있습니다.
1. 해당 사이트로 이동하여 Smarty 소스 코드 패키지를 다운로드합니다. // 여기서는 Smarty-2.6.26을 사용하고 있습니다
2. 소스 코드 패키지의 libs 폴더를 CI 프로젝트 디렉토리 아래의 library 폴더에 복사합니다. .그리고 Smarty-2.6.26으로 이름이 변경되었습니다. //
3. 프로젝트 디렉터리의 라이브러리 폴더에 새 파일을 만듭니다.
<?php if(!defined('BASEPATH')) EXIT('No direct script asscess allowed'); require_once( APPPATH . 'libraries/Smarty-2.6.26/libs/Smarty.class.php' ); class Cismarty extends Smarty { protected $ci; public function __construct(){ $this->ci = & get_instance(); $this->ci->load->config('smarty');//加载smarty的配置文件 //获取相关的配置项 $this->template_dir = $this->ci->config->item('template_dir'); $this->complie_dir = $this->ci->config->item('compile_dir'); $this->cache_dir = $this->ci->config->item('cache_dir'); $this->config_dir = $this->ci->config->item('config_dir'); $this->template_ext = $this->ci->config->item('template_ext'); $this->caching = $this->ci->config->item('caching'); $this->cache_lifetime = $this->ci->config->item('lefttime'); } }
4. 프로젝트 디렉토리 smarty.php 파일의 config 폴더에 포함된 내용은 다음과 같습니다.
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $config['theme'] = 'default'; $config['template_dir'] = APPPATH . 'views'; $config['compile_dir'] = FCPATH . 'templates_c'; $config['cache_dir'] = FCPATH . 'cache'; $config['config_dir'] = FCPATH . 'configs'; $config['template_ext'] = '.html'; $config['caching'] = false; $config['lefttime'] = 60;
5. 항목 파일이 있는 디렉토리에 새로운 폴더인 template_c를 생성합니다.
6. 프로젝트 디렉토리 아래 config 디렉토리에 있는 파일
Modify this
$autoload['libraries'] = array('Cismarty');//목적은 수동으로 로드할 필요 없이 시스템이 실행 중일 때 자동으로 로드되도록 하는 것입니다. 컨트롤러
7. 프로젝트 디렉터리의 코어 파일 폴더에 있는 새 파일 MY_Controller.php의 내용은 다음과 같습니다. // 확장 코어 제어 클래스
<?php if (!defined('BASEPATH')) exit('No direct access allowed.'); class MY_Controller extends CI_Controller { // 原文这里写错 public function __construct() { parent::__construct(); } public function assign($key,$val) { $this->cismarty->assign($key,$val); } public function display($html) { $this->cismarty->display($html); } }
구성 완료
--- --------- --------------- --------- --------------- --------- -------------
사용법 예:
다음과 같은 컨트롤러에서:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Welcome extends MY_Controller { // 原文这里写错 public function index() { //$this->load->view('welcome_message'); $data['title'] = '标题'; $data['num'] = '123456789'; //$this->cismarty->assign('data',$data); // 亦可 $this->assign('data',$data); $this->assign('tmp','hello'); //$this->cismarty->display('test.html'); // 亦可 $this->display('test.html'); } }
다음 보기에서: 보기 폴더는 프로젝트 디렉토리의 보기 아래에 있습니다:
새 파일 test.html 만들기
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>{ $test.title}</title> // 原文是 <title>{$test['title']}</title>,是错误的写法,也有可能是Smarty版本的原因 <style type="text/css"> </style> </head> <body> {$test.num|md5} // 原文这里也写错了 <br> {$tmp} </body> </html>
이 기사 주소: http: //m.sbmmt.com/php-weizijiaocheng-377484.html
프로그래밍을 배우려면 PHP 중국어 웹사이트로 오세요 m.sbmmt.com
위 내용은 CI 프레임워크에서 범용 템플릿 엔진을 스마트하게 사용하기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!