本文整理汇总了PHP中HomeController::info方法的典型用法代码示例。如果您正苦于以下问题:PHP HomeController::info方法的具体用法?PHP HomeController::info怎么用?PHP HomeController::info使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HomeController
的用法示例。
在下文中一共展示了HomeController::info方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: save
function save()
{
include "config/site.php";
if ($commentswitch === "0") {
echo "-1";
return;
}
session_start();
if (strcasecmp($_POST['validationCode'], $_SESSION['validationCode']) != 0) {
echo "0";
return;
}
$this->reply = new Reply();
$this->reply->save();
include "config/site.php";
$model = new BaseModel();
//reconnect to the msyql
$fname = $tpl_root . "/static/" . $_POST['par_id'] . ".html";
ob_start();
$_GET["id"] = $_POST['par_id'];
$home = new HomeController();
$home->info();
$content = ob_get_contents();
ob_end_clean();
$fp = fopen($fname, "w");
fwrite($fp, $content);
fclose($fp);
echo "true";
}
示例2: publishOne
function publishOne($contentId, $blockId)
{
include "config/site.php";
$model = new BaseModel();
$home = new HomeController();
//first create news.html
$news_file_name = "static/" . $tpl_name . "_news.html";
ob_start();
$home->news();
$news_contents = ob_get_contents();
ob_end_clean();
$fp = fopen($news_file_name, "w");
fwrite($fp, $news_contents);
fclose($fp);
//$logger = LogUtil::getLogger();
//create a static html for this article
$fname = "static/" . $tpl_name . "/" . $contentId . ".html";
//$logger->info($fname);
ob_start();
$_GET["id"] = $contentId;
$contestIdListStr .= $contentId . ",";
$home->info();
$content = ob_get_contents();
ob_end_clean();
$fp = fopen($fname, "w");
fwrite($fp, $content);
fclose($fp);
//$logger->info("finished");
//create a static html for this article's block
$fname = "static/" . $tpl_name . "/b" . $blockId . ".html";
$_GET['block_id'] = $blockId;
ob_start();
$home->index();
//php after render ,all mysql connections will be reset
$indexContent = ob_get_contents();
ob_end_clean();
$fp = fopen($fname, "w");
fwrite($fp, $indexContent);
fclose($fp);
//$contentObj = new Content();
//$contentObj->updatePublishSts($contestIdListStr);
//create index.html
unset($_GET['block_id']);
ob_start();
$home->index();
//php after render all mysql connections will be reset
$indexContent = ob_get_contents();
ob_end_clean();
$fp = fopen("index.html", "w");
fwrite($fp, $indexContent);
fclose($fp);
//echo "true";
}