> 백엔드 개발 > PHP 튜토리얼 > CI 프레임워크에서 범용 템플릿 엔진을 스마트하게 사용하기

CI 프레임워크에서 범용 템플릿 엔진을 스마트하게 사용하기

PHP中文网
풀어 주다: 2023-03-15 15:20:02
원래의
2286명이 탐색했습니다.

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(&#39;BASEPATH&#39;)) EXIT(&#39;No direct script asscess allowed&#39;); 
require_once( APPPATH . &#39;libraries/Smarty-2.6.26/libs/Smarty.class.php&#39; ); 
class Cismarty extends Smarty { 
    protected $ci; 
    public function  __construct(){ 
        $this->ci = & get_instance(); 
        $this->ci->load->config(&#39;smarty&#39;);//加载smarty的配置文件 
        //获取相关的配置项 
        $this->template_dir   = $this->ci->config->item(&#39;template_dir&#39;); 
        $this->complie_dir    = $this->ci->config->item(&#39;compile_dir&#39;); 
        $this->cache_dir      = $this->ci->config->item(&#39;cache_dir&#39;); 
        $this->config_dir     = $this->ci->config->item(&#39;config_dir&#39;); 
        $this->template_ext   = $this->ci->config->item(&#39;template_ext&#39;); 
        $this->caching        = $this->ci->config->item(&#39;caching&#39;); 
        $this->cache_lifetime = $this->ci->config->item(&#39;lefttime&#39;); 
    } 
}
로그인 후 복사

4. 프로젝트 디렉토리 smarty.php 파일의 config 폴더에 포함된 내용은 다음과 같습니다.

<?php  if ( ! defined(&#39;BASEPATH&#39;)) exit(&#39;No direct script access allowed&#39;); 
$config[&#39;theme&#39;]        = &#39;default&#39;; 
$config[&#39;template_dir&#39;] = APPPATH . &#39;views&#39;; 
$config[&#39;compile_dir&#39;]  = FCPATH . &#39;templates_c&#39;; 
$config[&#39;cache_dir&#39;]    = FCPATH . &#39;cache&#39;; 
$config[&#39;config_dir&#39;]   = FCPATH . &#39;configs&#39;; 
$config[&#39;template_ext&#39;] = &#39;.html&#39;; 
$config[&#39;caching&#39;]      = false; 
$config[&#39;lefttime&#39;]     = 60;
로그인 후 복사

5. 항목 파일이 있는 디렉토리에 새로운 폴더인 template_c를 생성합니다.
6. 프로젝트 디렉토리 아래 config 디렉토리에 있는 파일
Modify this

$autoload['libraries'] = array('Cismarty');//목적은 수동으로 로드할 필요 없이 시스템이 실행 중일 때 자동으로 로드되도록 하는 것입니다. 컨트롤러


7. 프로젝트 디렉터리의 코어 파일 폴더에 있는 새 파일 MY_Controller.php의 내용은 다음과 같습니다. // 확장 코어 제어 클래스

<?php if (!defined(&#39;BASEPATH&#39;)) exit(&#39;No direct access allowed.&#39;); 
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(&#39;BASEPATH&#39;)) exit(&#39;No direct script access allowed&#39;); 
class Welcome extends MY_Controller { // 原文这里写错 
    public function index() 
    { 
        //$this->load->view(&#39;welcome_message&#39;); 
        $data[&#39;title&#39;] = &#39;标题&#39;; 
        $data[&#39;num&#39;] = &#39;123456789&#39;; 
        //$this->cismarty->assign(&#39;data&#39;,$data); // 亦可 
        $this->assign(&#39;data&#39;,$data); 
        $this->assign(&#39;tmp&#39;,&#39;hello&#39;); 
        //$this->cismarty->display(&#39;test.html&#39;); // 亦可 
        $this->display(&#39;test.html&#39;); 
    } 
}
로그인 후 복사

다음 보기에서: 보기 폴더는 프로젝트 디렉토리의 보기 아래에 있습니다:
새 파일 test.html 만들기

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>{ $test.title}</title> // 原文是 <title>{$test[&#39;title&#39;]}</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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿