123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <?php
- class file_lib
- {
- var $read_count;
- function __construct()
- {
- $this->read_count = 0;
- }
- function file_lib()
- {
- $this->__construct();
- }
- //读取数据
- function cat($file="")
- {
- if($file)
- {
- $this->read_count++;
- $check = strtolower($file);
- if(strpos($check,"http://") === false)
- {
- if(!file_exists($file))
- {
- return false;
- }
- }
- $content = file_get_contents($file);
- $content = str_replace("<?php die('forbidden'); ?>\n","",$content);
- return $content;
- }
- else
- {
- return false;
- }
- }
- #[存储数据]
- function vi($content,$file,$var="",$type="wb")
- {
- $this->make($file,"file");
- if(is_array($content) && $var)
- {
- $content = $this->__array($content,$var);
- $content = "<?php \n".$content."\n ?".">";
- }
- else
- {
- $content = "<?php die('forbidden'); ?>\n".$content;
- }
- $this->_write($content,$file,$type);
- return true;
- }
- #[存储php等源码文件]
- function vim($content,$file)
- {
- $this->make($file,"file");
- $this->_write($content,$file,"wb");
- return true;
- }
- //存储图片
- function save_pic($content,$file)
- {
- $this->make($file,"file");
- $handle = $this->_open($file,"wb");
- fwrite($handle,$content);
- unset($content);
- $this->close($handle);
- return true;
- }
- #[删除数据操作]
- #[这一步操作一定要小心,在程序中最好严格一些,不然有可能将整个目录删掉!]
- function rm($file,$type="file")
- {
- $array = $this->_dir_list($file);
- if(is_array($array))
- {
- foreach($array as $key=>$value)
- {
- if(file_exists($value))
- {
- if(!is_file($value))
- {
- $this->rm($value,"folder");
- }
- else
- {
- unlink($value);
- }
- }
- }
- }
- else
- {
- if(file_exists($array) && is_file($array))
- {
- unlink($array);
- }
- }
- //如果要删除目录,同时设置
- if($type == "folder")
- {
- rmdir($file);
- }
- return true;
- }
- #[创建文件或目录]
- function make($file,$type="dir")
- {
- $newfile = $file;
- $msg = "";
- if(defined("ROOT"))
- {
- $root_strlen = strlen(ROOT);
- if(substr($file,0,$root_strlen) == ROOT)
- {
- $newfile = substr($file,$root_strlen);
- }
- $msg = ROOT;//从根目录记算起是否有文件写入
- }
- $array = explode("/",$newfile);
- $count = count($array);
- if($type == "dir")
- {
- for($i=0;$i<$count;$i++)
- {
- $msg .= $array[$i];
- if(!file_exists($msg) && ($array[$i]))
- {
- mkdir($msg,0777);
- }
- $msg .= "/";
- }
- }
- else
- {
- for($i=0;$i<($count-1);$i++)
- {
- $msg .= $array[$i];
- if(!file_exists($msg) && ($array[$i]))
- {
- mkdir($msg,0777);
- }
- $msg .= "/";
- }
- @touch($file);//创建文件
- }
- return true;
- }
- #[复制操作]
- function cp($old,$new,$recover=true)
- {
- if(substr($new,-1) == "/")
- {
- $this->make($new,"dir");
- }
- else
- {
- $this->make($new,"file");
- }
- if(is_file($new))
- {
- if($recover)
- {
- unlink($new);
- }
- else
- {
- return false;
- }
- }
- else
- {
- $new = $new.basename($old);
- }
- copy($old,$new);
- return true;
- }
- #[文件移动操作]
- function mv($old,$new,$recover=true)
- {
- if(substr($new,-1) == "/")
- {
- $this->make($new,"dir");
- }
- else
- {
- $this->make($new,"file");
- }
- if(is_file($new))
- {
- if($recover)
- {
- unlink($new);
- }
- else
- {
- return false;
- }
- }
- else
- {
- $new = $new.basename($old);
- }
- rename($old,$new);
- return true;
- }
- #[获取文件夹列表]
- function ls($folder)
- {
- $this->read_count++;
- return $this->_dir_list($folder);
- }
- function _dir_list($file,$type="folder")
- {
- if(substr($file,-1) == "/") $file = substr($file,0,-1);
- if($type == "file")
- {
- return $file;
- }
- elseif(is_dir($file))
- {
- $handle = opendir($file);
- $array = array();
- while(false !== ($myfile = readdir($handle)))
- {
- if($myfile != "." && $myfile != ".." && $myfile != ".svn") $array[] = $file."/".$myfile;
- }
- closedir($handle);
- return $array;
- }
- else
- {
- return $file;
- }
- }
- function __array($array,$var,$content="")
- {
- foreach($array AS $key=>$value)
- {
- if(is_array($value))
- {
- $content .= $this->__array($value,"".$var."[\"".$key."\"]");
- }
- else
- {
- $old_str = array('"',"<?php","?>","\r");
- $new_str = array("'","<?php","?>","");
- $value = str_replace($old_str,$new_str,$value);
- $content .= "\$".$var."[\"".$key."\"] = \"".$value."\";\n";
- }
- }
- return $content;
- }
- #[打开文件]
- function _open($file,$type="wb")
- {
- $handle = fopen($file,$type);
- $this->read_count++;
- return $handle;
- }
- #[写入信息]
- function _write($content,$file,$type="wb")
- {
- global $system_time;
- $content = stripslashes($content);
- $handle = $this->_open($file,$type);
- fwrite($handle,$content);
- unset($content);
- $this->close($handle);
- #[设置文件创建的时间]
- $system_time = $system_time ? $system_time : time();
- @touch($file,$system_time);
- return true;
- }
- function close($handle)
- {
- return fclose($handle);
- }
- }
- ?>
|