您好,登錄后才能下訂單哦!
本篇文章和大家了解一下PHP刪除文件函數(shù)的操作方法演示。有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對大家有所幫助。
PHP是什么
PHP即“超文本預(yù)處理器”,是一種通用開源腳本語言。PHP是在服務(wù)器端執(zhí)行的腳本語言,與C語言類似,是常用的網(wǎng)站編程語言。PHP獨(dú)特的語法混合了C、Java、Perl以及 PHP 自創(chuàng)的語法。利于學(xué)習(xí),使用廣泛,主要適用于Web開發(fā)領(lǐng)域。
PHP 刪除文件函數(shù)是什么?
PHP刪除文件函數(shù)是“unlink()”,該函數(shù)用于刪除文件,其語法為“unlink(filename,context)”,其參數(shù)filename代表規(guī)定要刪除的文件,參數(shù)context是可選參數(shù),代表規(guī)定文件句柄的環(huán)境。
示例代碼
<?php $file = "test.txt"; if (!unlink($file)) { echo ("Error deleting $file"); } else { echo ("Deleted $file"); } ?>
函數(shù)封裝
<?php /** * 創(chuàng)建文件操作 * @method create_file * @param str $filename 文件名 * @return boolean true|false */ function create_file(string $filename){ if(file_exists($filename)){ return false; } // 檢測目錄是否存在,不存在則創(chuàng)建 if(!file_exists(dirname($filename))){ mkdir(dirname($filename),0777,true); //true是指是否創(chuàng)建多級目錄 } // if(touch($filename)){ // return true; // } // return false; if(file_put_contents($filename,'')!==false){ // ''是指創(chuàng)建的文件中的內(nèi)容是空的 return true; } return false; } /** * 刪除文件操作 * @param string $filename 文件名 * @return boolean true|false */ function del_file(string $filename){ if(!file_exists($filename)|| !is_writeable($filename)){ return false; } if(unlink($filename)){ return true; } return false; } // create_file("ceshi"); // del_file('ceshi');
以上就是PHP刪除文件函數(shù)的操作方法演示的詳細(xì)內(nèi)容,更多請關(guān)注億速云其它相關(guān)文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。