Smarty의 간단명료한 설치 구성
최신 버전의 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를 볼 수 있습니다!됐어.
만약 절대 경로를 사용해야 한다면, 서버가 파일이 몇 층 디렉터리에서 호출되는지 알지 못하기 때문이다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.