コード例 #1
0
ファイル: template_use.php プロジェクト: clearm/web
<?php

require_once '../web/template.class.php';
$template = new Template();
$template->first();
$fileNmArray = array('forTempalte1.css');
$template->css('', $fileNmArray);
$template->headEnd();
$template->bodyStart();
echo "test";
$template->bodyEnd();
$template->htmlEnd();