⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stdoutappender.class.php

📁 一个用PHP编写的
💻 PHP
字号:
<?php    lt_include(PLOG_CLASS_PATH."class/logger/appender/appender.class.php");    /**     * StdoutAppender logs a message directly to the requesting client.	 *	 * \ingroup logger     */    class StdoutAppender extends Appender    {        /**         * Create a new FileAppender instance.         *         * @param Layout A Layout instance.         *         * @access public         * @since  1.0         */        function StdoutAppender($layout, $properties)        {            parent::Appender($layout, $properties);        }        /**         * Write a message directly to the client, including the new line.		 *		 * @param message The message that we're going to write         */        function write ($message)        {            echo $message . "<br/>\n";        }    }?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -