1 Star 0 Fork 1

qii / Phaser-games

forked from After / Phaser-games 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 1.76 KB
一键复制 编辑 原始数据 按行查看 历史
zhuxun.lx 提交于 2018-07-19 15:21 . [*]:what changed?
<?php
require_once dirname ( __FILE__ ) . '/services/GsStatisticsService.class.php';
if(isset($_GET['game'])) {
$game = $_GET['game'];
if($game != "flappybird" &&
$game != "getogether" &&
$game != "plane" &&
$game != "weiduan") {
exit(0);
} else {
$gameName = $game;
if($gameName == "weiduan") {
if(isset($_GET['id'])) {
$gameName = $gameName . "_" . $_GET['id'];
} else {
$gameName = $gameName . "_1";
}
}
$gsStatisticsService = new GsStatisticsService();
$ip = $_SERVER['REMOTE_ADDR'];
$gs = $gsStatisticsService->selectByGameAndIp($gameName, $ip);
if(count($gs) == 0) {
$gsStatisticsService->add($gameName, $ip, 1);
} else {
$count = $gs[0]['count'] + 1;
$gsStatisticsService->updateCount($count, $gs[0]['id']);
}
}
} else {
exit(0);
}
?>
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="renderer" content="webkit">
<meta name="apple-touch-fullscreen" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title><?php echo $game;?></title>
<script src="phaser.min.js"></script>
<script type="text/javascript">
var GAME = "<?php echo $game;?>";
</script>
<?php
include_once 'partials/' . $game . '/script.php';
?>
<style type="text/css">
body {
margin: 0;
padding: 0;
}
canvas {
margin: 0 auto;
}
<?php
include_once 'partials/' . $game . '/css.php';
?>
</style>
</head>
<body>
<?php
include_once 'partials/' . $game . '/body.php';
?>
</body>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qii/Phaser-games.git
git@gitee.com:qii/Phaser-games.git
qii
Phaser-games
Phaser-games
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891