>php教程 >php手册 >PHP顶层类

PHP顶层类

WBOY
WBOY원래의
2016-05-22 18:38:412013검색

<?php
/**
 * Object
 * base class
 */
class Object {
    /* 是否输出调试信息 */
    var $debug = true;
    /**
     * Object
     * @deprecated 析构方法
     *
     * @return void
     */
    function Object() {
        //用户是否从主页进入,做判定
        if (!defined(&#39;INDEX&#39;)) {
            die("Hacking attempt");
        }
        //echo &#39;create Object success!&#39;;
        
    }
    /**
     * msg_die
     * @deprecated 调试信息输出
     * @param string
     * @return void
     */
    function msg_die($info, $file, $line) {
        if ($this->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;
    }
}
?>


文章网址:

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.