Smarty의 간단명료한 설치 구성

1716 단어
하나.설치하다.
최신 버전의 Smarty를 다운로드합니다.다운로드한 파일의 압축을 풀다.다음에 여러분에게 설치 실례를 보여 드리겠습니다. 보시면 일거수일투족일 것입니다.  
(1) 루트 디렉터리(당신의 사이트 디렉터리) 아래에 새 디렉터리 러닝/을 만들고 러닝/에 디렉터리 스마트/를 만듭니다.방금 압축을 풀었던 디렉터리의libs/를 smarty/로 복사하고 smarty/에서 새로운templates 디렉터리를,templates에서 새로운cache/,templates/,templatesc/, config/.  
참고: templatesc/의 권한은 777
(2) 새 템플릿 파일: index.tpl, 이 파일을 learn/smarty/templates/templates 디렉토리에 배치합니다. 코드는 다음과 같습니다.
php 코드
<!DOCTYPE HTML PUBLIC "-//W3C//DTDHTML 4.01
 <html>
 <head>
 <metahttp-equiv="Content-Type" content="text/html;charset=gb2312">
 <title>Smarty</title></head>
 <body>{$hello}</body>
 </html> 

새 index.php, 이 파일을 learn/아래에 두기:
Php 코드
<?php
require 'smarty/Smarty.class.php';
$smarty = new Smarty;//         ,        
$smarty->template_dir ="smarty/templates/templates";
$smarty->compile_dir ="smarty/templates/templates_c";
$smarty->config_dir = "smarty/templates/config";
$smarty->cache_dir ="smarty/templates/cache";
//smarty          ,     true     caching,               ,              
$smarty->caching = false;
$hello = "Hello World!";//  
$smarty->assign("hello",$hello);//      
$smarty->display('index.tpl');
?>

//참고: "Parse error: syntax error, unexpected T"STRING in D:\ProgramFiles\AppServ\www\learn\index.php on line 2 "의 오류로 각 행의 시작 부분에 공백이 있는지 확인하고 삭제한 후 index를 다시 실행합니다.php.
(3) index를 실행합니다.php에서 Hello World를 볼 수 있습니다!됐어.
 
 
만약 절대 경로를 사용해야 한다면, 서버가 파일이 몇 층 디렉터리에서 호출되는지 알지 못하기 때문이다.

좋은 웹페이지 즐겨찾기