7 Star 19 Fork 7

王东祥/HongYuDSC

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vote.php 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
鸿宇科技 提交于 2018-03-02 02:43 . Initial commit
<?php
//zend by QQ:1527200768 鸿宇科技 禁止倒卖 一经发现停止任何服务
function vote_already_submited($vote_id, $ip_address)
{
$sql = 'SELECT COUNT(*) FROM ' . $GLOBALS['ecs']->table('vote_log') . ' ' . 'WHERE ip_address = \'' . $ip_address . '\' AND vote_id = \'' . $vote_id . '\' ';
return 0 < $GLOBALS['db']->GetOne($sql);
}
function save_vote($vote_id, $ip_address, $option_id)
{
$sql = 'INSERT INTO ' . $GLOBALS['ecs']->table('vote_log') . ' (vote_id, ip_address, vote_time) ' . 'VALUES (\'' . $vote_id . '\', \'' . $ip_address . '\', ' . gmtime() . ')';
$res = $GLOBALS['db']->query($sql);
$sql = 'UPDATE ' . $GLOBALS['ecs']->table('vote') . ' SET ' . 'vote_count = vote_count + 1 ' . 'WHERE vote_id = \'' . $vote_id . '\'';
$GLOBALS['db']->query($sql);
$sql = 'UPDATE ' . $GLOBALS['ecs']->table('vote_option') . ' SET ' . 'option_count = option_count + 1 ' . 'WHERE ' . db_create_in($option_id, 'option_id');
$GLOBALS['db']->query($sql);
}
define('IN_ECS', true);
require dirname(__FILE__) . '/includes/init.php';
require ROOT_PATH . 'includes/cls_json.php';
if (!isset($_REQUEST['vote']) || !isset($_REQUEST['options']) || !isset($_REQUEST['type'])) {
ecs_header("Location: ./\n");
exit();
}
$res = array('error' => 0, 'message' => '', 'content' => '');
$vote_id = intval($_POST['vote']);
$options = trim($_POST['options']);
$type = intval($_POST['type']);
$ip_address = real_ip();
if (vote_already_submited($vote_id, $ip_address)) {
$res['error'] = 1;
$res['message'] = $_LANG['vote_ip_same'];
}
else {
save_vote($vote_id, $ip_address, $options);
$vote = get_vote($vote_id);
if (!empty($vote)) {
$smarty->assign('vote_id', $vote['id']);
$smarty->assign('vote', $vote['content']);
}
$str = $smarty->fetch('library/vote.lbi');
$pattern = '/(?:<(\\w+)[^>]*> .*?)?<div\\s+id="ECS_VOTE">(.*)<\\/div>(?:.*?<\\/\\1>)?/is';
if (preg_match($pattern, $str, $match)) {
$res['content'] = $match[2];
}
$res['message'] = $_LANG['vote_success'];
}
$json = new JSON();
echo $json->encode($res);
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/doney/HongYuDSC.git
git@gitee.com:doney/HongYuDSC.git
doney
HongYuDSC
HongYuDSC
master

搜索帮助