日期:2011-05-24 浏览次数:20474 次
PHP5中的对象模型通过引用来调用对象, 但有时你可能想建立一个对象的副本,并希望原来的对象的改变不影响到副本 . 为了这样的目的,PHP定义了一个特殊的方法,称为__clone. 像__construct和__destruct一样,前面有两个下划线.
<?PHP
class ObjectTracker file://对象跟踪器
{
private static $nextSerial = 0;
private $id;
private $name;
function __construct($name) file://构造函数
{
$this->name = $name;
$this->id = ++self::$nextSerial;
}
function __clone() file://克隆
{
$this->name = "Clone of $that->name";
$this->id = ++self::$nextSerial;
}
function getId() file://获取id属性的值
{
return($this->id);
}
function getName() file://获取name属性的值
{
return($this->name);
}
}
$ot = new ObjectTracker("Zeev's Object");
$ot2 = $ot->__clone();
//输出: 1 Zeev's Object
print($ot->getId() . " " . $ot->getName() . "<br>");
//输出: 2 Clone of Zeev's Object
print($ot2->getId() . " " . $ot2->getName() . "<br>");
?>