本文整理匯總了PHP中clsTemplate::PParse方法的典型用法代碼示例。如果您正苦於以下問題:PHP clsTemplate::PParse方法的具體用法?PHP clsTemplate::PParse怎麽用?PHP clsTemplate::PParse使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類clsTemplate
的用法示例。
在下文中一共展示了clsTemplate::PParse方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: round
}
$pospercent = $pos / $total * 100;
$neupercent = $neu / $total * 100;
$negpercent = $neg / $total * 100;
$Tpl->setVar("username", $username);
$Tpl->setVar("pos", $pos);
$Tpl->setVar("neu", $neu);
$Tpl->setVar("neg", $neg);
$Tpl->setVar("pospercent", round($pospercent, 2));
$Tpl->setVar("neupercent", round($neupercent, 2));
$Tpl->setVar("negpercent", round($negpercent, 2));
$Tpl->setVar("pos1", $pos1);
$Tpl->setVar("neu1", $neu1);
$Tpl->setVar("neg1", $neg1);
$Tpl->setVar("pos2", $pos2);
$Tpl->setVar("neu2", $neu2);
$Tpl->setVar("neg2", $neg2);
$Tpl->setVar("pos3", $pos3);
$Tpl->setVar("neu3", $neu3);
$Tpl->setVar("neg3", $neg3);
}
//Show Page @1-BE2A4A0B
$Header->Show("Header");
$comments->Show();
$Footer->Show("Footer");
$Tpl->PParse("main", false);
//End Show Page
//Unload Page @1-AB7622EF
$CCSEventResult = CCGetEvent($CCSEvents, "BeforeUnload");
unset($Tpl);
//End Unload Page