Ignore:
Timestamp:
Mar 26, 2010, 10:47:35 AM (15 years ago)
Author:
Pieter Naber
Message:

ErrorHandler aangepast zodat hij als standaard wordt gebruikt door PHP
FileHandler iets uitgebreid

File:
1 edited

Legend:

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

    r7620 r7621  
    77
    88class FileHandler {
     9        private $file;
     10
     11        /*
     12         * Function: __construct (constructor)
     13         * Parameters: string $filename
     14         * Function: Handling with a node file
     15         */
     16        public function __construct(string $filename) {
     17                try {
     18                        $this->file = fopen($filename);
     19                } catch (Exception $err) {
     20                        // TODO: Better error description
     21                        trigger_error();
     22                }
     23        }
    924}
Note: See TracChangeset for help on using the changeset viewer.