PHP/String/chdir

Материал из Web эксперт
Перейти к: навигация, поиск

chdir() function changes to the file directory.

   <source lang="html4strict">

Its syntax is: int chdir (string directory) <?

   $newdir = "book";
   chdir($newdir) or die("Could not change to directory ($newdir)");
   $dh = opendir(".");
   print "Files:";
   while ($file = readdir($dh)) :
        print "$file 
"; endwhile; closedir($dh);

?>

 </source>