项目 笔记

来源:互联网 发布:测音高的软件 编辑:程序博客网 时间:2024/05/29 03:16

//删除文件下的所有目录 $dir 路径

private function deldir($dir) {         //先删除目录下的文件:         $dh=opendir($dir);         while ($file=readdir($dh))        {             if($file!="." && $file!=".."){                 $fullpath=$dir."/".$file;                 if(!is_dir($fullpath)) {                     unlink($fullpath);                 } else {                     deldir($fullpath);                 }             }         }         closedir($dh);         return true;}

数字变中文

    //小写变大写    private function numchange(){        $array = array('周一','周二','周三','周四','周五','周六','周日');        for($i=0;$i<count($array);$i++)        {            $return[] = $array[$i];        }        return $return;    }
0 0
原创粉丝点击