หน้าเว็บ

วันอาทิตย์ที่ 6 พฤศจิกายน พ.ศ. 2559

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

2 ความคิดเห็น:

  1. Great Article If you are interested to learn online interested courses like python,DATA SCIENCE,CYBER SECURITY,WEB DEVLOPMENT,
    then check it out

    coursack
    or you can contact us
    Facebook
    Linkedin

    ตอบลบ
  2. ถ้าอยากให้ชื่อโฟลเดอร์ที่เป็นภาษาไทย แสดงออกมาเป็นภาษาไทยด้วย จะใช้วิธีการไหนได้บ้างครับ
    ตอนนี้ได้ข้อมูลออกมาแล้วแต่ชื่อไฟล์ที่เป็นภาษาไทย มันกลายเป็น ???????????????????.pdf

    ตอบลบ