标签:
class Tv{
public $width=100;
public function setWidth($v){
$this->width = $v;
}
}
class Tv{
public $width=100;
public function setWidth($v){
$this->width = $v;
}
//被复制是调用,有clone关键词
public function __clone(){
$this->width = 0;
}
}
标签:
原文地址:http://www.cnblogs.com/everest33Tong/p/5651039.html