Class Php

class LogFile {
    protected $filename;
    protected $handle;
  
    public function __construct($filename) {
        $this->filename = $filename;
        $this->open();
    }
    private function open() {
        $this->handle = fopen($this->filename, 'a');
    }
  
    public function __destruct($filename) {
        fclose($this->handle);
    }
  
    public function __sleep() {
        return array('filename');
    }
  
    public function __wakeUp() {
        $this->open();
    }
}
?>