芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/lugarcollectibles.com/system/library/log.php
handle = fopen(DIR_LOGS . $filename, 'a'); } /** * * * @param string $message */ 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); } }