smarty 간단한 시작 실례

1226 단어
본고는 스마트의 용법을 간단한 실례로 분석하였다.여러분에게 참고하도록 공유하다.구체적인 분석은 다음과 같다.
smarty 설정 파일, 디스플레이 파일을 만들면 됩니다. 설정 파일 디스플레이 파일을 분리하여 미용사와 개발 작업이 설정 페이지 코드를 완벽하게 분리할 수 있도록 합니다. index.php

    @header("Content-type: text/html; charset=UTF-8");  
  
require '../libs/Smarty.class.php'; 
$my=new Smarty; 
$my->template_dir ='templates/'; 
$my->compile_dir ='templates_c/'; 
$my->config_dir ='configs/'; 
$my->cache_dir ='cache/'; 
 
$my->assign('content','welcome to arrival'); 
$my->assign('mylife',array(" "," "," "," ")); 
$my->display('kk.html');  // smarty kk.html 
?>

kk.html

    
  






{$content} 
{section name=truelife loop=$mylife} 
{$mylife[truelife]} 
{/section} 


본고에서 서술한 것이 여러분의 스마트 프로그램 설계에 도움이 되었으면 합니다.

좋은 웹페이지 즐겨찾기