View Single Post
ישן 18-03-06, 11:34   # 4
psycho
הוסטסניון
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
גיל: 35
הודעות: 1,926

psycho לא מחובר  

תקרא כאן:
http://php.net/opendir

PHP קוד:
<?php
$dir 
"/etc/php5/";

// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
   if (
$dh opendir($dir)) {
       while ((
$file readdir($dh)) !== false) {
           echo 
"filename: $file : filetype: " filetype($dir $file) . "\n";
       }
       
closedir($dh);
   }
}
?>
  Reply With Quote