| 12345678910111213141516171819 |
- <?php
- // 全局常量
- define("APP_DIR", dirname(__FILE__));
- define("SUPPORT_RESTFUL", false);
- define("SESSION_KEY", "HEANUP_SESSION_UID");
- define("SIGN", "weatherapisign2019");
- define("ALERT_TOTAL", 40);
- if (get_magic_quotes_gpc()) {
- function stripslashes_deep($value)
- {
- $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
- return $value;
- }
- $_POST = array_map('stripslashes_deep', $_POST);
- $_GET = array_map('stripslashes_deep', $_GET);
- $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
- $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
- }
|