|
123456789101112131415161718192021222324252627 |
- <?php
- /**
- * 流量统计
- *
- * @version $id:statistics.php$
- * @package DedeBIZ.Site
- * @copyright Copyright (c) 2022 DedeBIZ.COM
- * @license GNU GPL v2 (https://www.dedebiz.com/license)
- * @link https://www.dedebiz.com
- */
- define('IS_DEDEAPI', TRUE);
- require_once(dirname(__FILE__)."/../system/common.inc.php");
- require_once(DEDEINC."/libraries/statistics.class.php");
- if (empty($dopost)) $dopost = '';
- $stat = new DedeStatistics;
- if ($dopost == "stat") {
- $rs = $stat->Record();
- $result = array(
- "code" => 200,
- "data" => "success",
- );
- echo json_encode($result);
- exit;
- }
- $v = $stat->GetStat();
- echo $v;
- ?>
|