本文整理汇总了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