Ignore:
Timestamp:
Mar 30, 2010, 8:51:44 PM (15 years ago)
Author:
Pieter Naber
Message:

Fixed a lot of bugs, introduced KMLFile::parseFile for parsing the node status file

Location:
trunk/src/inc
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/inc/FileHandler.class.php

    r7622 r7631  
    1414         * Function: Handling with a node file
    1515         */
    16         public function __construct(string $filename) {
     16        public function __construct($filename) {
    1717                try {
    18                         $this->file = fopen($filename);
     18                        $handle = fopen($filename, 'r');
     19                        $this->file = '';
     20                        while (!feof($handle)) {
     21                                $this->file .= fread($handle, 8192);
     22                        }
     23                        fclose($handle);
    1924                } catch (Exception $err) {
    2025                        // TODO: Better error description
    2126                        trigger_error();
    2227                }
     28        }
    2329
    24                 // TODO: Needs to do something
     30        public function getFile() {
     31                return $this->file;
    2532        }
    2633}
Note: See TracChangeset for help on using the changeset viewer.