source: trunk/src/class/FileHandler.class.php@ 7621

Last change on this file since 7621 was 7621, checked in by Pieter Naber, 15 years ago

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

File size: 494 bytes
RevLine 
[7620]1<?
2/*
3 * Project: NodeMap2.0
4 * File: FileHandler.class.php
5 * Purpose: Checking and reading node files from the server
6 */
7
8class FileHandler {
[7621]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 }
[7620]24}
Note: See TracBrowser for help on using the repository browser.