芝麻web文件管理V1.00
编辑当前文件:/home/prismawe/www/system/classes/kohana/log/stdout.php
write($messages); * * @param array messages * @return void */ public function write(array $messages) { // Set the log line format $format = 'time --- type: body'; foreach ($messages as $message) { // Writes out each message fwrite(STDOUT, PHP_EOL.strtr($format, $message)); } } } // End Kohana_Log_StdOut