Your IP : 216.73.216.95


Current Path : /var/www/opcart/upload/system/library/
Upload File :
Current File : /var/www/opcart/upload/system/library/log.php

<?php
class Log {
	private $handle;

	public function __construct($filename) {
		$this->handle = fopen(DIR_LOGS . $filename, 'a');
	}

	public function write($message) {
		fwrite($this->handle, date('Y-m-d G:i:s') . ' - ' . print_r($message, true) . "\n");
	}

	public function __destruct() {
		fclose($this->handle);
	}
}