Php-mysql Course

In this tutorial is presented DirectoryIterator, a PHP class added in PHP 5+.
This class is useful to traverse a directory, and get informations about its folders and files (file name, last accessed time, size, etc.).
Like any other class, to use DirectoryIterator you must create an object instance of this class, using:
$objDI = new DirectoryIterator($path);
- $path - represents path of the directory to traverse. For the crrent directory you can use for path: __DIR__ , or dirname(__FILE__).
Then you can use its methods.
- To understand how to use DirectoryIterator , let's see some practical examples.

Get the path to the file

- uses getPath() method.
$objDI = new DirectoryIterator(__DIR__);
echo $objDI->getPath();           // /home/examples/public_html

The instance of DirectoryIterator contains an object with info about the files and directories in the current folder. This object can be traversed with a foreach() instruction to get info of each item.

Get the name of the files in current directory

- Uses isFile() to check if it's a file, and getFilename() to get the name.
$objDI = new DirectoryIterator(__DIR__);
foreach($objDI as $fileinfo) {
  // if it's a file
  if($fileinfo->isFile()) {
    echo $fileinfo->getFilename() .'<br/>';
  }
}

/* Returns something similar to:
 admin.php
 coursesweb.jpg
 jquery.js
 course.html
*/

Get the size of the files

- Uses isFile() to check if it's a file, and getSize() to get the size (in bytes).
$objDI = new DirectoryIterator(__DIR__);
foreach($objDI as $fileinfo) {
  // if it's a file
  if($fileinfo->isFile()) {
    $filesize = $fileinfo->getSize() / 1024;          // 1 KB = 1024 bytes
    echo $fileinfo->getFilename() .' '. $filesize .' KB<br/>';
  }
}

/* Returns something similar to:
 admin.php 3.1572265625 KB
 coursesweb.jpg 11.498046875 KB
 jquery.js 122.095703125 KB
*/

Get directories name

- Uses isDir() to check if it's a directory, isDot() that checks if current item is '.', or '..', and getFilename() to get the name.
$objDI = new DirectoryIterator(__DIR__);
foreach($objDI as $fileinfo) {
  // if it's a directory, but not '.', or '..'
  if($fileinfo->isDir() && !$fileinfo->isDot()) {
    echo $fileinfo->getFilename() .'<br/>';
  }
}

/* Returns something similar to:
 Pages
 CoursesWeb
 Tutorials
*/

Get CHMOD permisions

- Uses isDot() to check if not '.', or '..', and getPerms() to get the permissions of current item (as a decimal integer).
$objDI = new DirectoryIterator(__DIR__);
foreach($objDI as $fileinfo) {
  // if not '.', or '..'
  if(!$fileinfo->isDot()) {
    // get octal from decimal integer
    $octal_perms = substr(sprintf('%o', $fileinfo->getPerms()), -4);
    echo $fileinfo->getFilename() .' '. $octal_perms .'
'; } } /* Returns something similar to: admin.php 0644 Pages 0755 Tutorials.html 0644 */

Check if directory and files are writable

- Uses isWritable(). Returns True if the current file/directory is writable, otherwise, False.
$objDI = new DirectoryIterator(dirname(__FILE__));
foreach($objDI as $fileinfo) {
  if($fileinfo->isWritable()) {
    echo $fileinfo->getFilename() .' is writable<br/>';
  }
}

/* Returns something similar to:
 coursesweb.htm  is writable
 Pages  is writable
 websites.txt  is writable
*/

Get last accessed time of the file

- Uses isFile() to check if it's a file, and getATime() to get the last accessed time, as a Unix timestamp.
$objDI = new DirectoryIterator(dirname(__FILE__));
foreach($objDI as $fileinfo) {
  if($fileinfo->isFile()) {
    echo $fileinfo->getFilename() .' '. $fileinfo->getATime() .'<br/>';
  }
}

/* Returns something similar to:
 coursesweb.htm  1319637336
 Pages  1319880959
 websites.txt 1327757524
*/

• To see the list with all methods of DirectoryIterator class, visit: The DirectoryIterator class.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which HTML5 tag can be used to embed an external application (SWF, PDF) in web page?
<mark> <embed> <canvas>
<embed src="flash_game.swf" width="450" height="350" />
Which CSS pseudo-element adds a special style to the first line of a text?
:first-letter :before :first-line
#id:first-line {
  font-weight: bold;
  color: blue;
}
Click on the window object property which gets or sets the URL of current page.
window.location window.self window.status
var url = window.location;
alert(url);
Indicate the PHP function used to get the contents of a file or page and store it into a string.
fopen() file_put_contents() file_get_contents()
$homepage = file_get_contents("http://coursesweb.net/");
echo $homepage;
DirectoryIterator to get file and directory info

Last accessed pages

  1. Disable button and Enable it after specified time (17527)
  2. JavaScript Game - Find the Word (887)
  3. Ajax-PHP Chat Script (49473)
  4. Working with getElementsByTagName (13084)
  5. Node.js Course (2790)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (318)
  2. CSS cursor property - Custom Cursors (56)
  3. PHP-MySQL free course, online tutorials PHP MySQL code (44)
  4. The Mastery of Love (41)
  5. CSS3 2D transforms (40)