PHP实现的文件操作类及文件下载功能示例

这篇文章主要介绍了PHP实现的文件操作类及文件下载功能,结合实例形式分析了php针对文件的读、写、创建及下载等功能实现技巧,需要的朋友可以参考下

本文实例讲述了PHP实现的文件操作类及文件下载功能。分享给大家供大家参考,具体如下:

文件操作类:

0){ $args = func_get_args(); $this->thepath = $args[0]; } } //A function to open the file. private function openfile ($readorwrite){ //First,ensure the file exists. try { if (file_exists ($this->thepath)){ //Now,we need to see if we are reading or writing or both. $proceed = false; if ($readorwrite == “r”){ if (is_readable($this->thepath)){ $proceed = true; } } elseif ($readorwrite == “w”){ if (is_writable($this->thepath)){ $proceed = true; } } else { if (is_readable($this->thepath) && is_writable($this->thepath)){ $proceed = true; } } try { if ($proceed){ //We can now attempt to open the file. try { if ($filepointer = fopen ($this->thepath,$readorwrite)){ return $filepointer; } else { throw new exception (self::OPENERROR); return false; } } catch (exception $e) { echo $e->getmessage(); } } else { throw new exception (self::PERMERROR); } } catch (exception $e) { echo $e->getmessage(); } } else { throw new exception (self::FOUNDERROR); } } catch (exception $e) { echo $e->getmessage(); } } //A function to close a file. function closefile () { try { if (!fclose ($this->thepath)){ throw new exception (self::CLOSEERROR); } } catch (exception $e) { echo $e->getmessage(); } } //A function to read a file,then return the results of the read in a string. public function read () { //First,attempt to open the file. $filepointer = $this->openfile (“r”); //Now,return a string with the read data. if ($filepointer != false){ //Then we can read the file. return fgets ($filepointer); } //Lastly,close the file. $this->closefile (); } //A function to write to a file. public function write ($towrite) { //First,attempt to open the file. $filepointer = $this->openfile (“w”); //Now,return a string with the read data. if ($filepointer != false){ //Then we can read the file. return fwrite ($filepointer,$towrite); } //Lastly,close the file. $this->closefile (); } //A function to append to a file. public function append ($toappend) { //First,attempt to open the file. $filepointer = $this->openfile (“a”); //Now,$toappend); } //Lastly,close the file. $this->closefile (); } //A function to set the path to a new file. public function setpath ($newpath) { $this->thepath = $newpath; } } ?>
read(); //Then let’s try writing to the file. $myfile->write (“Hello World!”); //Then,let’s try appending. $myfile->append (“Hello Again!”); ?>

文件下载:

作者: dawei

【声明】:永州站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部