11/06/2016

PHP : readdir() Function อ่านชื่อ Folder และ File มาใช้งาน

PHP : readdir() Function อ่านชื่อ Folder และ File มาใช้งาน

Example
  1. <?php
  2. $dir = "/images/";
  3.  
  4. // Open a directory, and read its contents
  5. if (is_dir($dir)){
  6.   if ($dh = opendir($dir)){
  7.     while (($file = readdir($dh)) !== false){
  8.       echo "filename:" . $file . "<br>";
  9.     }
  10.     closedir($dh);
  11.   }
  12. }
  13. ?>


ไฟล์ที่ใช้งานตัวอย่าง 192.168.2.106/usr/local/lightsquid/it.php และ it_list.php
  1.  
  2. $path = "/usr/local/lightsquid/it/";
  3. $results = scandir($path);
  4.  
  5. foreach ($results as $result) {
  6.     if ($result != "." && $result != "..") {
  7.         echo $result . "<br>";  
  8.     }
  9. }
  10.  
  11.  
  12. $dir = "/usr/local/lightsquid/it/20160727/";
  13.  
  14. // Open a directory, and read its contents
  15. if (is_dir($dir)){
  16.   if ($dh = opendir($dir)){
  17.     while (($file = readdir($dh)) !== false){
  18.         if (strpos($file, ':') !== false) {
  19.         echo $file . "<br>";
  20.     }
  21.     }
  22.     closedir($dh);
  23.   }
  24. }


http://www.w3schools.com/php/func_directory_readdir.asp

No comments:

Post a Comment