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


PHP Comments::postComment方法代码示例

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


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

示例1: Comments

                    $check = $obj->login($_POST);
                    break;
                case 'verify':
                    $check = $obj->verifyUser($_POST);
                    break;
                default:
                    $check = false;
                    break;
            }
            $header = $check === true ? 'Location: /admin/' : "Location: /{$obj->url0}/error/";
        }
    }
} else {
    if ($_POST['action'] == 'cmnt_post') {
        $cmnt = new Comments();
        $header = $cmnt->postComment();
    } else {
        if ($_GET['action'] == 'cmnt_delete') {
            $cmnt = new Comments();
            $header = $cmnt->deleteComment($_GET['bid'], $_GET['cmntid']);
        } else {
            if ($_GET['action'] == 'logout') {
                $admin = new Admin();
                $check = $admin->logout();
                $header = $check === true ? 'Location: /' : 'Location: /admin/error/';
            } else {
                $header = "Location: /";
            }
        }
    }
}
开发者ID:RobMacKay,项目名称:Ennui-CMS,代码行数:31,代码来源:update.inc.php

示例2: post_action

 public function post_action($id, $type, $backPage)
 {
     Comments::postComment($id, $type, $backPage);
 }
开发者ID:radex,项目名称:Watermelon,代码行数:4,代码来源:comments.controller.php

示例3: strftime

<?php

include_once "topmenu.php";
include_once "properties/serverproperties.php";
include_once 'classes/Comments.php';
$isAjaxPage = true;
$jsExec = '';
$receiverID = $_POST['receiver_id'];
$senderID = $_POST['sender_id'];
$content = $_POST['content'];
$time = strftime('%c');
if (Comments::postComment($senderID, $receiverID, $content, $time)) {
} else {
}
?>

<div style="display: none;">
	<div id="inline1" style=""></div>
</div>

<a class="inlinecontent abshide" href="#inline1"> </a>

开发者ID:ng2k12,项目名称:MercInc,代码行数:21,代码来源:ajaxComents.php


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