欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP顶层类

程序员文章站 2022-04-14 22:19:06
...
debug) {
            $format = "There is happen error information: %s ." . " the file name: %s , on line : %s . ";
            printf($format, $info, $file, $line);
            $error = debug_backtrace();
            print_r($error[0]);
        }
    }
    /**
     * setDebug
     * @deprecated 设置是否输出调试信息
     * @param boolean true or false
     * @return void
     */
    function setDebug($bool) {
        $this->debug = is_bool($bool) ? $bool : false;
    }
    /**
     * getDebug * @deprecated 查看是否打开调试信息
     * @param void
     * @return boolean
     */
    function getDebug() {
        return $this->debug;
    }
}
?>


文章网址:

随意转载^^但请附上教程地址。