constants.php 552 B

123456789101112131415161718
  1. <?php
  2. // 全局常量
  3. define('FRAME_START_TIME', microtime(true));
  4. define('APP_ID', 3);
  5. define("APP_DIR", dirname(__FILE__));
  6. if (get_magic_quotes_gpc()) {
  7. function stripslashes_deep($value)
  8. {
  9. $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
  10. return $value;
  11. }
  12. $_POST = array_map('stripslashes_deep', $_POST);
  13. $_GET = array_map('stripslashes_deep', $_GET);
  14. $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
  15. $_REQUEST = array_map('stripslashes_deep', $_REQUEST);
  16. }