머리말
벤치마크
설명서 1
설명서 2
설명서 3
설명서 4
설명서 5
◇ 레퍼런스
다운로드
게시판
tpl_
이전
다음
목록
{ tpl_ }
템플릿 파일아이디이고 함수 또는 객체에 인자로 전달하는 용도로 사용할 수 있습니다.
function.getInfo.php
<?php
function getInfo($id) {
...
return $id . " : good day!";
}
?>
index.php
<?php
include 'Template_.class.php';
$tpl = new Template_;
$tpl->
define
(
'news'
,
'info.tpl'
);
$tpl->
print_
(
'news'
);
?>
info.tpl
{=getInfo(tpl_)}
>> output
news : good day!
스코프
를 대신하여
tpl_
과 플러그인 객체로 모듈화를 구현할 수도 있습니다.
이전
목록
다음
Since 2003-03-03
hosted on
vultr.com