List All Directories/Folders From A Specified Location with php

PHP- List All Directories/Folders From A Specified Location
<?php
//path to directory to scan
$directory = '.';
 
//get all files in specified directory
$files = glob($directory . "*");
 
//print each file name
foreach($files as $file)
{
 //check to see if the file is a folder/directory
 if(is_dir($file))
 { 
 ?>
      <li>
        <div class="dropPlaylist" id="<?php echo basename($file); ?>"><a href="?playlist=<?php echo basename($file); ?>"><?php echo basename($file); ?></a></div>
      </li>
      <?php }
}
 
?>