<?php
/*
?* WEB开发笔记 www.chhua.com 每日练习 PHP设计模式单例模式的使用方法
?*/

class Preferences {//建一个不能在外部创建实例的类,因为构造方法是私有
?private $props=array();//私有的属性数组[……]