php实现singleton()单例模式 php实现singleton()单例模式实例
人气:0想了解php实现singleton()单例模式实例的相关内容吗,在本文为您仔细讲解php实现singleton()单例模式的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:php,实现,singleton(),单例模式,下面大家一起来学习吧。
本文实例讲述了php实现singleton()单例模式的方法。分享给大家供大家参考。具体实现方法如下:
common.php文件如下:
复制代码 代码如下:
<?php
class CC
{
private static $ins;
public static function singleton()
{
if (!isset(self::$ins)){
$c = __CLASS__;
self::$ins = new $c;
}
return self::$ins;
}
public function EventResult($Id)
{
return $Id;
}
}
?>
class CC
{
private static $ins;
public static function singleton()
{
if (!isset(self::$ins)){
$c = __CLASS__;
self::$ins = new $c;
}
return self::$ins;
}
public function EventResult($Id)
{
return $Id;
}
}
?>
index.php文件如下:
复制代码 代码如下:
<html>
<head>
<title>测试</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<?php
require 'common.php';
$objCC=CC::singleton();
$r=$objCC->EventResult(7);
print_r($objCC);
echo $r."</br>";
?>
</body></html>
<head>
<title>测试</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<?php
require 'common.php';
$objCC=CC::singleton();
$r=$objCC->EventResult(7);
print_r($objCC);
echo $r."</br>";
?>
</body></html>
希望本文所述对大家的PHP程序设计有所帮助。
加载全部内容