smarty 간단 한 템 플 릿 변수 출력 방법<br>오리지널

본 고 는 Smarty 의 템 플 릿 변수 출력 방법 을 간단하게 서술 하 였 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
config.inc.php 설정 파일 은 다음 과 같 습 니 다.

include_once('smarty/Smarty.class.php');
$smarty=new Smarty();
$smarty->config_dir="smarty/Config_File.class.php";
$smarty->caching=false; //      
$smarty->template_dir="./templates"; //    
$smarty->compile_dir="./templates_c"; //    
$smarty->cache_dir="./smarty_cache"; //    
$smarty->left_delimiter="<{";
$smarty->right_delimiter="}>";
index.php 파일 은 다음 과 같 습 니 다.

include('./config.inc.php');
$title="php    ";
$content="smarty  !";
$newstext[]=array("name"=>"php    ","date"=>"2015-08-01");
$newstext[]=array("name"=>"php    ","date"=>"2015-08-02");
$newstext[]=array("name"=>"smarty  ","date"=>"2015-08-03");
$row=array("  ","  ","  ");
$smarty->assign("title",$title);
$smarty->assign("row",$row);//         
$smarty->assign("shownewstext",$newstext);//         
$smarty->assign("content",$content);
$smarty->display('index.htm');
실행 결 과 는 다음 과 같 습 니 다.

    :   |    |    
--------------------------------------------------------------------------------
     :smarty  ! 
       :
php     - 2015-08-01
php     - 2015-08-02
smarty   - 2015-08-03
본 고 에서 말 한 것 이 스마트 템 플 릿 을 바탕 으로 하 는 phop 프로 그래 밍 에 어느 정도 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기