Home  >  Article  >  Backend Development  >  php gets the implementation code of all files in the directory_PHP tutorial

php gets the implementation code of all files in the directory_PHP tutorial

WBOY
WBOYOriginal
2016-07-20 11:09:41849browse

php教程 获取目录下所有文件实现代码
class a{   
 private $img_dir;
        private $img_path;
        private $face_files = array();
        private $allow_extension = array();

private function get_face_files()
        {
            $files = array();
            if(is_dir($this->img_dir))
            {
                if ($dh = opendir($this->img_dir))
                {
                    while (($file = readdir($dh)) !== false)
                    {
                        if($file == '.') continue;
                        if($file == '..') continue;
                        $fileinfo = explode('.', (basename($file)));
                        if(in_array($fileinfo[1], $this->allow_extension))
                        {
                            $files[] = array(
                                'filename' => $fileinfo[0],
                                'extension' => $fileinfo[1],
                            );
                        }
                    }
                    closedir($dh);
                }
            }
            return $files;
        }
}


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/444785.htmlTechArticlephp教程 获取目录下所有文件实现代码 class a{ private $img_dir; private $img_path; private $face_files = array(); private $allow_extension = array(); private function...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn