set.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. //缓存存放目录
  3. define('CACHE_ROOT', dirname(__FILE__) . DIRECTORY_SEPARATOR . 'cache');
  4. //缓存时间 单位秒
  5. define('CACHE_TIME', 3600 * 1); //一小时
  6. //缓存文件后缀
  7. define('CACHE_FIX', '.php');
  8. //缓存开关
  9. define('CACHE_CLOSE', false);
  10. function getDirectorySize($path) {
  11. $totalsize = 0;
  12. $totalcount = 0;
  13. $dircount = 0;
  14. if ($handle = opendir($path)) {
  15. while (false !== ($file = readdir($handle))) {
  16. $nextpath = $path . '/' . $file;
  17. if ($file != '.' && $file != '..' && !is_link($nextpath)) {
  18. if (is_dir($nextpath)) {
  19. $dircount++;
  20. $result = getDirectorySize($nextpath);
  21. $totalsize+= $result['size'];
  22. $totalcount+= $result['count'];
  23. $dircount+= $result['dircount'];
  24. } elseif (is_file($nextpath)) {
  25. $totalsize+= filesize($nextpath);
  26. $totalcount++;
  27. }
  28. }
  29. }
  30. }
  31. closedir($handle);
  32. $total['size'] = $totalsize;
  33. $total['count'] = $totalcount;
  34. $total['dircount'] = $dircount;
  35. return $total;
  36. }
  37. function sizeFormat($size) {
  38. $sizeStr = '';
  39. if ($size < 1024) {
  40. return $size . " bytes";
  41. } else if ($size < (1024 * 1024)) {
  42. $size = round($size / 1024, 1);
  43. return $size . " KB";
  44. } else if ($size < (1024 * 1024 * 1024)) {
  45. $size = round($size / (1024 * 1024) , 1);
  46. return $size . " MB";
  47. } else {
  48. $size = round($size / (1024 * 1024 * 1024) , 1);
  49. return $size . " GB";
  50. }
  51. }
  52. /**
  53. * 删除指定目录下的文件,不删除目录文件夹
  54. *
  55. * @param string $aimDir
  56. * @return boolean
  57. */
  58. function unlinkDir($aimDir) {
  59. $aimDir = str_replace('', '/', $aimDir);
  60. $aimDir = substr($aimDir, -1) == '/' ? $aimDir : $aimDir . '/';
  61. if (!is_dir($aimDir)) {
  62. return false;
  63. }
  64. $dirHandle = opendir($aimDir);
  65. while (false !== ($file = readdir($dirHandle))) {
  66. if ($file == '.' || $file == '..') {
  67. continue;
  68. }
  69. if (!is_dir($aimDir . $file)) {
  70. unlinkFile($aimDir . $file);
  71. } else {
  72. unlinkDir($aimDir . $file);
  73. }
  74. }
  75. closedir($dirHandle);
  76. }
  77. /**
  78. * 删除文件
  79. *
  80. * @param string $aimUrl
  81. * @return boolean
  82. */
  83. function unlinkFile($aimUrl) {
  84. if (file_exists($aimUrl)) {
  85. unlink($aimUrl);
  86. return true;
  87. } else {
  88. return false;
  89. }
  90. }
  91. function ShowMsg($msg, $gourl, $onlymsg = 0, $limittime = 0) {
  92. require("../../config/config.php");
  93. global $public_r;
  94. if ($limittime == 0) $litime = 1000;
  95. else $litime = $limittime;
  96. if ($gourl == "-1") {
  97. if ($limittime == 0) $litime = 5000;
  98. $gourl = "javascript:history.go(-2);";
  99. }
  100. if ($gourl == "" || $onlymsg == 1) {
  101. $msg = "<script>alert(\"" . str_replace("\"", "", $msg) . "\");</script>";
  102. } else {
  103. $func = "var pgo=0;
  104. function JumpUrl(){
  105. if(pgo==0){ location='javascript:history.go(-2);'; pgo=1; }
  106. }\r\n";
  107. $rmsg = $func;
  108. $rmsg.= "document.write(\"";
  109. if ($onlymsg == 0) {
  110. if ($gourl != "javascript:;" && $gourl != "") {
  111. $rmsg.= "<br/><br/><b>$msg</b><br><br/><a href='javascript:history.go(-2);'>如果你的浏览器没反应,请点击这里...</a>";
  112. }
  113. $rmsg.= "<br/><br/></div>\");\r\n";
  114. if ($gourl != "javascript:;" && $gourl != "") {
  115. $rmsg.= "setTimeout('JumpUrl()',$litime);";
  116. }
  117. } else {
  118. $rmsg.= "<br/><br/></div>\");\r\n";
  119. }
  120. $msg = $rmsg;
  121. }
  122. echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  123. <html>
  124. <head>
  125. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  126. <title>信息提示</title>
  127. <link href="css.css" rel="stylesheet" type="text/css">
  128. </head>
  129. <body>
  130. <br><br><br><br><br>
  131. <table width="500" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder"><tr class="header"><td height="25"><div align="center">信息提示</div></td>
  132. </tr>
  133. <tr bgcolor="#FFFFFF">
  134. <td height="80">
  135. <div align="center">
  136. <script>'.$msg.'</script>
  137. </div></td>
  138. </tr>
  139. <iframe src="'.$public_r['add_murl'].'/e/cache/do.php?del=1" width="0px" height="0px"></iframe>
  140. </table>
  141. </body>
  142. </html>';
  143. }
  144. ?>