PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Ahmed Magdy Ezzeldin   Recursive execution on a directory tree   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example of usage
Class: Recursive execution on a directory tree
Process directories recursively
Author: By
Last change:
Date: 14 years ago
Size: 138 bytes
 

Contents

Class file image Download
<?
require_once("FileManager.php");
$manager = new FileManager();
print_r($manager->list_files_in_folder(dirname(__FILE__), true));
?>