当前位置: 首页>>代码示例>>PHP>>正文


PHP Forum::getTotalTopics方法代码示例

本文整理汇总了PHP中Forum::getTotalTopics方法的典型用法代码示例。如果您正苦于以下问题:PHP Forum::getTotalTopics方法的具体用法?PHP Forum::getTotalTopics怎么用?PHP Forum::getTotalTopics使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Forum的用法示例。


在下文中一共展示了Forum::getTotalTopics方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

require LANGS . 'ACPDashboardT.php';
ACPDashboardT::init();
require LIB . 'forum/Forum.php';
if (!$userManager->loggedIn() || !$user->isAdmin()) {
    echo ErrorMessage::setText('You are not allowed to view this page.', true);
}
include 'template/header.php';
echo '
		<h1>
			Dashboard
		</h1>

		<section class="statistics">
			<div class="row">
				<div class="item">
					<span>' . Forum::getTotalTopics() . '</span>
					' . ACPDashboardT::get('topics') . '
				</div>

				<div class="item">
					<span>' . Forum::getTotalPosts() . '</span>
					' . ACPDashboardT::get('posts') . '
				</div>

				<div class="item">
					<span>' . User::getTotalUsers() . '</span>
					' . ACPDashboardT::get('members') . '
				</div>
			</div>

			<div class="row">
开发者ID:GIDIX,项目名称:quicktalk,代码行数:31,代码来源:index.php

示例2: file

//*********************
$fileC = file("db/Users/" . $_SESSION['user']->getUserId() . ".dat", FILE_IGNORE_NEW_LINES);
$fileC[3] = trim($fileC[3]) + 1;
$fileC[4] = trim($fileC[4]) + 1;
$str = "";
foreach ($fileC as $line) {
    $str .= $line . "\n";
}
file_put_contents("db/Users/" . $_SESSION['user']->getUserId() . ".dat", $str);
//********************
$fileC = file("db/forumList.dat", FILE_IGNORE_NEW_LINES);
$str = "";
foreach ($fileC as $statistic) {
    $temp = new Forum($statistic);
    if ($temp->getForumId() == $_SESSION['forum']->getForumId()) {
        $str .= $temp->getForumId() . "~" . $temp->getForumName() . "~" . $temp->getDescription() . "~" . ($temp->getTotalTopics() + 1) . "~" . ($temp->getTotalPosts() + 1) . "\n";
    } else {
        $str .= $statistic . "\n";
    }
}
file_put_contents("db/forumList.dat", $str);
//*********************
$fhTemp = fopen("db/Topics/" . $_GET['forumId'] . "temp.dat", "w");
$fh = fopen("db/Topics/" . $_GET['forumId'] . ".dat", "r");
fwrite($fhTemp, $total . "\n" . time() . "\n");
while (!feof($fh)) {
    $a = trim(fgets($fh));
    $b = trim(fgets($fh));
    if ($a != "" && $b != "") {
        fwrite($fhTemp, $a . "\n" . $b . "\n");
    }
开发者ID:rosslagerwall,项目名称:floobb,代码行数:31,代码来源:addPollExecute.php

示例3: stripslashes

$name = stripslashes($_POST['name']);
$name = str_replace("\n", "", $name);
$name = str_replace("\r\n", "", $name);
$name = str_replace("\r", "", $name);
$name = str_replace("~", "", $name);
$description = stripslashes($_POST['description']);
$description = str_replace("\n", "", $description);
$description = str_replace("\r\n", "", $description);
$description = str_replace("\r", "", $description);
$description = str_replace("~", "", $description);
$description = substr($description, 3, strlen($description) - 7);
if (trim($name) == "") {
    header("Location: forumListEdit.php?forumId=" . $_GET['forumId'] . "&error=1");
    exit;
}
if (trim($description) == "") {
    header("Location: forumListEdit.php?forumId=" . $_GET['forumId'] . "&error=2");
    exit;
}
$fileC = file("db/forumList.dat", FILE_IGNORE_NEW_LINES);
$str = "";
foreach ($fileC as $statistic) {
    $temp = new Forum($statistic);
    if ($temp->getForumId() == $_GET['forumId']) {
        $str .= $temp->getForumId() . "~" . $name . "~" . $description . "~" . $temp->getTotalTopics() . "~" . $temp->getTotalPosts() . "\n";
    } else {
        $str .= $statistic . "\n";
    }
}
file_put_contents("db/forumList.dat", $str);
header("Location: index.php");
开发者ID:rosslagerwall,项目名称:floobb,代码行数:31,代码来源:forumListEditExecute.php


注:本文中的Forum::getTotalTopics方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。