How to use dir() function to open a directory handle and returns an object with directory methods in PHP

1 Answer

0 votes
$d = dir("/xampp/htdocs/");
echo "Handle: " . $d->handle . "<br />";
echo "Path: " . $d->path . "<br />";
   
$d->close();

/*
run:
  
Handle: Resource id #3
Path: /xampp/htdocs/
  
*/

 



answered Apr 9, 2016 by avibootz
...