php 文件操作类
1 class fileInit { 2 3 /** 4 * 创建空文件 5 * @param string $filename 需要创建的文件 6 * @return 7 */ 8 public function create_file($filename) { 9 if (file_exists($filename)) return false; 10 $this->create_dir(dirname($filename)); //创建目录 11 return @file_put_contents($filename,''); 12 } 13 14 /** 15 * 写文件 16 * @param string $filename 文件名称 17 * @param string $content 写入文件的内容 18 * @param string $type 类型,1=清空文件内容,写入新内容,2=再内容后街上新内容 19 * @return 20 */ 21 public function write_file($filename, $content, $type = 1) { 22 if ($type == 1) { 23 if (file_exists($filename)) $this->del_file($filename); //删除文件 24 $this-