Ignore:
Timestamp:
Dec 18, 2005 12:16:03 AM (18 years ago)
Author:
scdev
Message:

detabbed all files ;P

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/file_importer.php

    r41 r42  
    2727            $file_text = join('', file($file));
    2828            fclose($fp);
    29            
     29
    3030            // Do something with file contents.
    3131            preg_match('/BALANCE:\s*\$([\.\d]+)/', $file_text, $amt);
     
    6868
    6969/**
    70  * Find all files in directories recursivly with a specified file extension. 
     70 * Find all files in directories recursivly with a specified file extension.
    7171 *
    7272 * @param  string $dir               the full path to the directory to scan
     
    8080{
    8181    static $output;
    82    
     82
    8383    $dir_handle = opendir($dir);
    8484    while ($dir_handle && ($file = readdir($dir_handle)) !== false) {
Note: See TracChangeset for help on using the changeset viewer.