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

📄 debug.php

📁 很棒的在线教学系统
💻 PHP
字号:
<?php/** * AJAX Debugging implementation * * SVN Rev: $Id: Debug.php,v 1.1.2.1 2008/10/03 07:09:50 nicolasconnault Exp $ *//** * Newline to use */define ("HTML_AJAX_NEWLINE", "\n");// {{{ class HTML_AJAX_Debug/** * AJAX Debugging implementation * * @category   HTML * @package    AJAX * @author     David Coallier <davidc@php.net> * @copyright  2005 David Coallier  * @license    http://www.opensource.org/licenses/lgpl-license.php  LGPL * @version    Release: 0.5.6 */class HTML_AJAX_Debug {    // {{{ properties    /**     * This is the error message.     *     * @access private     */    var $errorMsg;    /**     * The line where the error occured.     *     * @access private     */    var $errorLine;    /**     * The error code.     *     * @access private     */    var $errorCode;        /**     * The file where the error occured.     *     * @access private     */    var $errorFile;    /**     * Time the error occured     *     * @access private     */    var $_timeOccured;    /**     * The whole error itself     *     * @access private     * @see errorMsg     * @see errorLine     * @see errorFile     * @see errorCode     */    var $error;    /**     * The file to save the error to.     *     * @access private     * @default ajaxErrLog.xml     */    var $file = 'ajaxErrLog.xml';    // }}}    // {{{ constructor    /**     * The constructor.     *     * @param string $errorMsg   The error message.     * @param string $errLine    The line where error occured.     * @param string $errCode    The error Code.     * @param string $errFile    The file where error occured.     */    function HTML_AJAX_Debug($errMsg, $errLine, $errCode, $errFile)    {        $this->errorMsg    = $errMsg;        $this->errorLine   = $errLine;        $this->errorCode   = $errCode;        $this->errorFile   = $errFile;        $this->_timeOccured = date("Y-m-d H:i:s", time());        $this->xmlError();    }    // }}}    // {{{ xmlError    /**     * This functions formats the error to xml format then we can save it.     *     * @access protected     * @return $this->error   the main error.     */    function xmlError()    {        $error  = " <when>{$this->_timeOccured}</when>" . HTML_AJAX_NEWLINE;        $error .= " <msg>{$this->errorMsg}</msg>"       . HTML_AJAX_NEWLINE;        $error .= " <code>{$this->errorCode}</code>"    . HTML_AJAX_NEWLINE;        $error .= " <line>{$this->errorLine}</line>"    . HTML_AJAX_NEWLINE;        $error .= " <file>{$this->errorFile}</file>"    . HTML_AJAX_NEWLINE . HTML_AJAX_NEWLINE;        return $this->error = $error;     }    // }}}    // {{{ sessionError    /**     * This function pushes the array $_SESSION['html_ajax_debug']['time'][]     * with the values inside of $this->error     *     * @access public     */    function sessionError()     {        $_SESSION['html_ajax_debug']['time'][] = $this->error;    }    // }}}    // {{{ _saveError    /**     * This function saves the error to a file     * appending to this file.     *     * @access private.     */    function _saveError()    {        if ($handle = fopen($this->file, 'a')) {            fwrite($handle, $this->error);        }    }    // }}}}// }}}?>

⌨️ 快捷键说明

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