1 Star 0 Fork 7

柳下幽灵/HongYuDSC

forked from 王东祥/HongYuDSC 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
comment_reply_single.php 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
鸿宇科技 提交于 2018-03-02 02:43 . Initial commit
<?php
//zend by QQ:1527200768 鸿宇科技 禁止倒卖 一经发现停止任何服务
define('IN_ECS', true);
require dirname(__FILE__) . '/includes/init.php';
require ROOT_PATH . 'includes/cls_json.php';
if (!isset($_REQUEST['cmt']) && !isset($_REQUEST['act'])) {
ecs_header("Location: ./\n");
exit();
}
$_REQUEST['cmt'] = isset($_REQUEST['cmt']) ? json_str_iconv($_REQUEST['cmt']) : '';
$json = new JSON();
$result = array('error' => 0, 'message' => '', 'content' => '');
$cmt = new stdClass();
$cmt->id = isset($_GET['id']) ? intval($_GET['id']) : 0;
$cmt->libType = isset($_GET['libType']) ? intval($_GET['libType']) : 0;
$cmt->type = isset($_GET['type']) ? intval($_GET['type']) : 0;
$cmt->page = isset($_GET['page']) && (0 < intval($_GET['page'])) ? intval($_GET['page']) : 1;
if ($result['error'] == 0) {
if ($cmt->libType == 1) {
$reply_list = single_show_reply_list($cmt->id, $cmt->page);
$smarty->assign('comment_list', $reply_list['comment_list']);
$smarty->assign('reply_paper', $reply_list['reply_paper']);
$result['content'] = $smarty->fetch('library/comment_reply_show.lbi');
}
else {
$single_reply = assign_comments_single_reply($cmt->id, $cmt->type, $cmt->page);
$reply_comments = $single_reply['reply_comments'];
$reply_paper = $single_reply['reply_paper'];
$smarty->assign('reply_comments', $reply_comments);
$smarty->assign('reply_paper', $reply_paper);
$result['comment_id'] = $cmt->id;
$result['content'] = $smarty->fetch('library/comment_reply_list.lbi');
}
}
echo $json->encode($result);
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/grave01/HongYuDSC.git
[email protected]:grave01/HongYuDSC.git
grave01
HongYuDSC
HongYuDSC
master

搜索帮助