当前位置:Gxlcms > PHP教程 > 下面这段另类的写法是为了啥

下面这段另类的写法是为了啥

时间:2021-07-01 10:21:17 帮助过:2人阅读

下面这段写法中,问题一:构造函数里面竞然是空的,并且更另类的是他的下面竟然是实例化,如果构造函数是空的,下面如何实例化呢
道理是啥?

输出模板内容的数组,其他的变量不允许从程序中直接
输出到模板 */ private static $output_value = array(); /** * 模板路径设置 */ private static $tpl_dir=''; /** * 默认layout */ private static $layout_file = 'layout'; private function __construct(){} /** * 实例化 * * @return obj */ public static function getInstance(){ if (self::$instance === null || !(self::$instance instanceof Tpl)){ self::$instance = new Tpl(); } return self::$instance; } /** * 设置模板目录 * * @param string $dir * @return bool */ public static function setDir($dir){ self::$tpl_dir = $dir; return true; } /** * 设置布局 * * @param string $layout * @return bool */ public static function setLayout($layout){ self::$layout_file = $layout; return true; } /** * 抛出变量 * * @param mixed $output * @param void */ public static function output($output,$input=''){ self::getInstance(); self::$output_value[$output] = $input; } /** * 调用显示模板 * * @param string $page_name * @param string $layout * @param int $time */ public static function showpage($page_name='',$layout='',$time=2000){ if (!defined('TPL_NAME')) define('TPL_NAME','default'); self::getInstance(); if (!empty(self::$tpl_dir)){ $tpl_dir = self::$tpl_dir.DS; } //默认是带有布局文件 if (empty($layout)){ $layout = 'layout'.DS.self::$layout_file.'.php'; }else { $layout = 'layout'.DS.$layout.'.php'; } $layout_file = BASE_PATH.'/templates/'.TPL_NAME.DS.$layout; $tpl_file = BASE_PATH.'/templates/'.TPL_NAME.DS.$tpl_dir.$page_name.'.php'; if (file_exists($tpl_file)){ //对模板变量进行赋值 $output = self::$output_value; //页头 $output['html_title'] = $output['html_title']!='' ? $output['html_title'] :$GLOBALS['setting_config']['site_name']; $output['seo_keywords'] = $output['seo_keywords']!='' ? $output['seo_keywords'] :$GLOBALS['setting_config']['site_name']; $output['seo_description'] = $output['seo_description']!='' ? $output['seo_description'] :$GLOBALS['setting_config']['site_name']; $output['ref_url'] = getReferer(); Language::read('common'); $lang = Language::getLangContent(); @header("Content-type: text/html; charset=".CHARSET); //判断是否使用布局方式输出模板,如果是,那么包含布局文件,并且在布局文件中包含模板文件 if ($layout != ''){ if (file_exists($layout_file)){ include_once($layout_file); }else { $error = 'Tpl ERROR:'.'templates'.DS.$layout.' is not exists'; throw_exception($error); } }else { include_once($tpl_file); } }else { $error = 'Tpl ERROR:'.'templates'.DS.$tpl_dir.$page_name.'.php'.' is not exists'; throw_exception($error); } } /** * 显示页面Trace信息 * * @return array */ public static function showTrace(){ $trace = array(); //当前页面 $trace[Language::get('nc_debug_current_page')] = $_SERVER['REQUEST_URI'].'
'; //请求时间 $trace[Language::get('nc_debug_request_time')] = date('Y-m-d H:i:s',$_SERVER['REQUEST_TIME']).'
'; //系统运行时间 $query_time = number_format((microtime(true)-StartTime),3).'s'; $trace[Language::get('nc_debug_execution_time')] = $query_time.'
'; //内存 $trace[Language::get('nc_debug_memory_consumption')] = number_format(memory_get_usage()/1024/1024,2).'MB'.'
'; //请求方法 $trace[Language::get('nc_debug_request_method')] = $_SERVER['REQUEST_METHOD'].'
'; //通信协议 $trace[Language::get('nc_debug_communication_protocol')] = $_SERVER['SERVER_PROTOCOL'].'
'; //用户代理 $trace[Language::get('nc_debug_user_agent')] = $_SERVER['HTTP_USER_AGENT'].'
'; //会话ID $trace[Language::get('nc_debug_session_id')] = session_id().'
'; //执行日志 $log = Log::read(); $trace[Language::get('nc_debug_logging')] = count($log)?count($log).Language::get('nc_debug_logging_1').'
'.implode('
',$log):Language::get('nc_debug_logging_2'); $trace[Language::get('nc_debug_logging')] = $trace[Language::get('nc_debug_logging')].'
'; //文件加载 $files = get_included_files(); $trace[Language::get('nc_debug_load_files')] = count($files).str_replace("\n",'
',substr(substr(print_r($files,true),7),0,-2)).'
'; return $trace; }}


回复讨论(解决方案)

这种写法是单例模式。

单例模式是一种常用的软件设计模式。在它的核心结构中只包含一个被称为单例类的特殊类。通过单例模式可以保证系统中一个类只有一个实例而且该实例易于外界访问,从而方便对实例个数的控制并节约系统资源。如果希望在系统中某个类的对象只能存在一个,单例模式是最好的解决方案。

http://baike.baidu.com/view/1859857.htm

构造函数是否为空,和实例化没有关系
构造函数为空,只不过表示实例化时没有用户自定义动作。并且也不执行父类(如果有的话)的构造函数

private function __construct(){}
表示该类不能在外部实例化,私有方法只能在定义它的类里面访问
在类外面 new Tpl
将会有一个 Call to private Tpl::__construct() from invalid context 的致命错误

这是单例模式的写法,但少了
private function __clone(){}
如果单例模式的对象能被克隆的话,就违背了单例的初衷

对于你的这个类,单不单例已经没有意义了,因为他所有的属性和方法都是静态的
因为静态的属性是在各实例间共享的

人气教程排行