file.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <?php
  2. class file_lib
  3. {
  4. var $read_count;
  5. function __construct()
  6. {
  7. $this->read_count = 0;
  8. }
  9. function file_lib()
  10. {
  11. $this->__construct();
  12. }
  13. //读取数据
  14. function cat($file="")
  15. {
  16. if($file)
  17. {
  18. $this->read_count++;
  19. $check = strtolower($file);
  20. if(strpos($check,"http://") === false)
  21. {
  22. if(!file_exists($file))
  23. {
  24. return false;
  25. }
  26. }
  27. $content = file_get_contents($file);
  28. $content = str_replace("<?php die('forbidden'); ?>\n","",$content);
  29. return $content;
  30. }
  31. else
  32. {
  33. return false;
  34. }
  35. }
  36. #[存储数据]
  37. function vi($content,$file,$var="",$type="wb")
  38. {
  39. $this->make($file,"file");
  40. if(is_array($content) && $var)
  41. {
  42. $content = $this->__array($content,$var);
  43. $content = "<?php \n".$content."\n ?".">";
  44. }
  45. else
  46. {
  47. $content = "<?php die('forbidden'); ?>\n".$content;
  48. }
  49. $this->_write($content,$file,$type);
  50. return true;
  51. }
  52. #[存储php等源码文件]
  53. function vim($content,$file)
  54. {
  55. $this->make($file,"file");
  56. $this->_write($content,$file,"wb");
  57. return true;
  58. }
  59. //存储图片
  60. function save_pic($content,$file)
  61. {
  62. $this->make($file,"file");
  63. $handle = $this->_open($file,"wb");
  64. fwrite($handle,$content);
  65. unset($content);
  66. $this->close($handle);
  67. return true;
  68. }
  69. #[删除数据操作]
  70. #[这一步操作一定要小心,在程序中最好严格一些,不然有可能将整个目录删掉!]
  71. function rm($file,$type="file")
  72. {
  73. $array = $this->_dir_list($file);
  74. if(is_array($array))
  75. {
  76. foreach($array as $key=>$value)
  77. {
  78. if(file_exists($value))
  79. {
  80. if(!is_file($value))
  81. {
  82. $this->rm($value,"folder");
  83. }
  84. else
  85. {
  86. unlink($value);
  87. }
  88. }
  89. }
  90. }
  91. else
  92. {
  93. if(file_exists($array) && is_file($array))
  94. {
  95. unlink($array);
  96. }
  97. }
  98. //如果要删除目录,同时设置
  99. if($type == "folder")
  100. {
  101. rmdir($file);
  102. }
  103. return true;
  104. }
  105. #[创建文件或目录]
  106. function make($file,$type="dir")
  107. {
  108. $newfile = $file;
  109. $msg = "";
  110. if(defined("ROOT"))
  111. {
  112. $root_strlen = strlen(ROOT);
  113. if(substr($file,0,$root_strlen) == ROOT)
  114. {
  115. $newfile = substr($file,$root_strlen);
  116. }
  117. $msg = ROOT;//从根目录记算起是否有文件写入
  118. }
  119. $array = explode("/",$newfile);
  120. $count = count($array);
  121. if($type == "dir")
  122. {
  123. for($i=0;$i<$count;$i++)
  124. {
  125. $msg .= $array[$i];
  126. if(!file_exists($msg) && ($array[$i]))
  127. {
  128. mkdir($msg,0777);
  129. }
  130. $msg .= "/";
  131. }
  132. }
  133. else
  134. {
  135. for($i=0;$i<($count-1);$i++)
  136. {
  137. $msg .= $array[$i];
  138. if(!file_exists($msg) && ($array[$i]))
  139. {
  140. mkdir($msg,0777);
  141. }
  142. $msg .= "/";
  143. }
  144. @touch($file);//创建文件
  145. }
  146. return true;
  147. }
  148. #[复制操作]
  149. function cp($old,$new,$recover=true)
  150. {
  151. if(substr($new,-1) == "/")
  152. {
  153. $this->make($new,"dir");
  154. }
  155. else
  156. {
  157. $this->make($new,"file");
  158. }
  159. if(is_file($new))
  160. {
  161. if($recover)
  162. {
  163. unlink($new);
  164. }
  165. else
  166. {
  167. return false;
  168. }
  169. }
  170. else
  171. {
  172. $new = $new.basename($old);
  173. }
  174. copy($old,$new);
  175. return true;
  176. }
  177. #[文件移动操作]
  178. function mv($old,$new,$recover=true)
  179. {
  180. if(substr($new,-1) == "/")
  181. {
  182. $this->make($new,"dir");
  183. }
  184. else
  185. {
  186. $this->make($new,"file");
  187. }
  188. if(is_file($new))
  189. {
  190. if($recover)
  191. {
  192. unlink($new);
  193. }
  194. else
  195. {
  196. return false;
  197. }
  198. }
  199. else
  200. {
  201. $new = $new.basename($old);
  202. }
  203. rename($old,$new);
  204. return true;
  205. }
  206. #[获取文件夹列表]
  207. function ls($folder)
  208. {
  209. $this->read_count++;
  210. return $this->_dir_list($folder);
  211. }
  212. function _dir_list($file,$type="folder")
  213. {
  214. if(substr($file,-1) == "/") $file = substr($file,0,-1);
  215. if($type == "file")
  216. {
  217. return $file;
  218. }
  219. elseif(is_dir($file))
  220. {
  221. $handle = opendir($file);
  222. $array = array();
  223. while(false !== ($myfile = readdir($handle)))
  224. {
  225. if($myfile != "." && $myfile != ".." && $myfile != ".svn") $array[] = $file."/".$myfile;
  226. }
  227. closedir($handle);
  228. return $array;
  229. }
  230. else
  231. {
  232. return $file;
  233. }
  234. }
  235. function __array($array,$var,$content="")
  236. {
  237. foreach($array AS $key=>$value)
  238. {
  239. if(is_array($value))
  240. {
  241. $content .= $this->__array($value,"".$var."[\"".$key."\"]");
  242. }
  243. else
  244. {
  245. $old_str = array('"',"<?php","?>","\r");
  246. $new_str = array("'","&lt;?php","?&gt;","");
  247. $value = str_replace($old_str,$new_str,$value);
  248. $content .= "\$".$var."[\"".$key."\"] = \"".$value."\";\n";
  249. }
  250. }
  251. return $content;
  252. }
  253. #[打开文件]
  254. function _open($file,$type="wb")
  255. {
  256. $handle = fopen($file,$type);
  257. $this->read_count++;
  258. return $handle;
  259. }
  260. #[写入信息]
  261. function _write($content,$file,$type="wb")
  262. {
  263. global $system_time;
  264. $content = stripslashes($content);
  265. $handle = $this->_open($file,$type);
  266. fwrite($handle,$content);
  267. unset($content);
  268. $this->close($handle);
  269. #[设置文件创建的时间]
  270. $system_time = $system_time ? $system_time : time();
  271. @touch($file,$system_time);
  272. return true;
  273. }
  274. function close($handle)
  275. {
  276. return fclose($handle);
  277. }
  278. }
  279. ?>