Smarty 템 플 릿 단순 설정 및 사용 방법 예시

이 글 의 사례 는 Smarty 템 플 릿 의 간단 한 설정 과 사용 방법 을 서술 하 였 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
Smarty 디 렉 터 리 에 templates,templates 만 들 기c,configs,cache 디 렉 터 리.Smarty 가 컴 파일 과 캐 시 를 할 수 있 도록 합 니 다.
smarty 구축inc.php 파일 은 smarty 를 다음 과 같이 설정 합 니 다.

<?php
include_once("./smarty/Smarty.class.php"); //  smarty   
$smarty = new Smarty(); //  smarty    $smarty
$smarty->caching=false; //          
$smarty->template_dir="./templates";  //      
$smarty->compile_dir="./templates_c";  //      
$smarty->cache_dir="./cache";  //     
$smarty->cache_lifetime=60;
$smarty->left_delimiter = "<{";  //    
$smarty->right_delimiter = "}>"; //    
?>

행 테스트,루트 디 렉 터 리 에 index.php 파일 만 들 기:

<?php 
include("smarty_inc.php");
$val= array("  ","   ","  ");
$smarty->assign("name",$val);
$smarty->display("index.html");
?>

templates 아래 index.html 템 플 릿 만 들 기:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset="utf-8">
<title>    </title>
</head>
<body>
<{foreach from=$name item=x}>
    :<{$x}> <br/>
<{/foreach}>
</body>
</html>

자,큰 성 과 를 거 두 었 으 니 이렇게 간단 하 다.
더 많은 스마트 관련 내용 은 본 사이트 의 주 제 를 볼 수 있 습 니 다.
이 글 은 스마트 템 플 릿 을 기반 으로 한 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기