PHP Classes

File: use.php

Recommend this page to a friend!
  Classes of Juliano Carlos da Silva   Get Files   use.php   Download  
File: use.php
Role: Example script
Content type: text/plain
Description: Exemple
Class: Get Files
Retrieve all files in in a directory recursively
Author: By
Last change:
Date: 20 years ago
Size: 186 bytes
 

Contents

Class file image Download
<?
   
require_once("class.get.files.php");
   
   
$ext = array("jpg","gif","png");
   
$files = new getfiles("C:\\teste\\thumbs\\img",$ext);
   
$list = $files->getlist();
   
print_r($list);
?>