本文整理汇总了PHP中comments::serialize方法的典型用法代码示例。如果您正苦于以下问题:PHP comments::serialize方法的具体用法?PHP comments::serialize怎么用?PHP comments::serialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类comments
的用法示例。
在下文中一共展示了comments::serialize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
$code = $nwObj->fetchNewswirePage(0, $currentPage);
break;
}
break;
case 'readStory':
define("INIT_SESSION", true);
include_once 'initialize.php';
switch ($cmd) {
case 'addComment':
if (isset($_GET['siteContentId']) and isset($_GET['comments'])) {
$comments = $_GET['comments'];
$siteContentId = $_GET['siteContentId'];
if ($comments != '') {
require_once PATH_CORE . 'classes/comments.class.php';
$comObj = new comments($db);
$comInfo = $comObj->serialize(0, 0, $siteContentId, 0, $comments, 0, $db->ui->userid, $db->ui->memberName, '', 0);
// $db->ui->uid
$siteCommentId = $comObj->add($comInfo);
require_once PATH_CORE . '/classes/log.class.php';
$logObj = new log($db);
$logItem = $logObj->serialize(0, $db->ui->userid, 'comment', $siteContentId);
$logItem->itemid2 = $siteCommentId;
// djm: hack for now so I have it
$inLog = $logObj->add($logItem);
$code = 'Your comment has been posted!';
} else {
$error = true;
$errorMsg = 'Please enter a valid comment.';
}
} else {
$error = true;