PHP头条
热点:

PHP顶层类


<?php
/**
* Object
* base class
*/
class Object
{
/* 是否输出调试信息 */
var $debug = true;

/**
* Object
* @deprecated 析构方法
*
* @return void
*/
function Object()
{
//用户是否从主页进入,做判定
if ( !defined( 'INDEX' ) )
{
die( "Hacking attempt" );
}
//echo 'create Object success!';
}

/**
* 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;
}
}
?>

www.phpzy.comtrue/php/24990.htmlTechArticlePHP顶层类 ?php /** * Object * base class */ class Object { /* 是否输出调试信息 */ var $debug = true; /** * Object * @deprecated 析构方法 * * @return void */ function Object() { //用户是否从主页进入,做判定 if ( !...

相关文章

    暂无相关文章

PHP之友评论

今天推荐