本文實例講述了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;
}
}
?>
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>
希望本文所述對大家的PHP程序設計有所幫助。