How to traverse a folder with PHP to get the picture directory name and file name

Source: Internet
Author: User
This article mainly describes how to traverse the folder through PHP to get the image directory name and file name, has a certain reference value, now share to everyone, the need for friends can refer to

The code is as follows:

Public Function Doimportimages (q_request $input, Q_response $output) {$dir = Var_path.      ' Images ';    Here is the directory where all pictures are stored $result = $this->_importimages ($dir);         All picture catalogs and filenames obtained are returned as multidimensional arrays for easy handling of}private function _importimages ($dir) {$handle = Opendir ($dir);//Read resource if (! $handle) {    return false;    } $result = [];    $module = ' images '; while (($file = Readdir ($handle))!== false) {if ($file! = '. ' && $file! = ' ... ') {$curPath = $dir. '/' .            $file;            if (Is_dir ($curPath)) {//Determines whether the directory is read recursively, reads the file $result [$file] = $this->_importimages ($curPath);                } else {$uploadObj = Lib_upload::getuploadobj ($module, false);   $UPLOADOBJ->doupload ($curPath, Q_upload::update_type_path);                Here do a picture upload action, if you do not need to adjust $data = $UPLOADOBJ->data ();            $result [] = $data [' Filecreateurl '];    }}} closedir ($handle); return $result;}

The above is the whole content of this article, I hope that everyone's learning has helped, more relevant content please pay attention to topic.alibabacloud.com!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.