當前位置: 首頁>>代碼示例>>PHP>>正文


PHP clsTemplate::PParse方法代碼示例

本文整理匯總了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
開發者ID:4v4t4r,項目名稱:CTF-LCC,代碼行數:31,代碼來源:Feedback.php


注:本文中的clsTemplate::PParse方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。