객체 클래스에서 __clone() 메서드를 정의하여 객체의 복제 동작을 조정할 수 있습니다. 이 메소드의 코드는 복제 작업 중에 실행됩니다. 모든 기존 객체 멤버를 대상 객체에 복사하는 것 외에도 __clone() 메서드에서 지정한 작업이 수행됩니다. 아래 Corporate_Drone 클래스를 수정하고 다음 메서드를 추가하세요.
function __clone() { $this->tiecolor = "blue"; }
이후 새로운 Corporate_Drone 객체를 생성하고, Employeeid 멤버의 값을 늘린 후, 객체를 복제한 후, 복제된 객체의 타이 컬러가 실제로 __clone() 메소드를 통해 설정되었음을 보여주는 일부 데이터를 출력합니다. 샘플 코드:
<?php // Create new corporatedrone object $drone1 = new corporatedrone(); // Set the $drone1 employeeid member $drone1->setEmployeeID("12345"); // Clone the $drone1 object $drone2 = clone $drone1; // Set the $drone2 employeeid member $drone2->setEmployeeID("67890"); // Output the $drone1 and $drone2 employeeid members echo "drone1 employeeID: ".$drone1->getEmployeeID()."<br />"; echo "drone2 employeeID: ".$drone2->getEmployeeID()."<br />"; echo "drone2 tiecolor: ".$drone2->getTiecolor()."<br />"; ?>
프로그램 실행 결과
drone1 employeeID: 12345 drone2 employeeID: 67890 drone2 tiecolor:
또 다른 작은 예:
<?php class Fruit { private $name = "水果"; private $color = "颜色"; public function setName($name){ $this->name = $name; } public function setColor($color){ $this->color = $color; } function showColor(){ return $this->color.'的'.$this->name."<br />"; } function __destruct(){ echo "被吃掉了(对象被回收) <br />"; } } $apple = new Fruit(); $apple->setName("大苹果"); $apple->setColor("红色"); echo $apple->showColor(); $clone_apple = $apple; $clone_apple->setName("小苹果"); $clone_apple->setColor("青色"); echo $clone_apple->showColor(); ?>
위의 내용은 한 클래스를 다른 클래스에 할당한 것뿐이므로 현재 메모리에는 여전히 객체가 남아 있습니다.
<?php class Fruit { private $name = "水果"; private $color = "颜色"; public function setName($name){ $this->name = $name; } public function setColor($color){ $this->color = $color; } function showColor(){ return $this->color.'的'.$this->name."<br />"; } function __destruct(){ echo "被吃掉了(对象被回收) <br />"; } function __clone(){ $this->name = "克隆水果"; } } $apple = new Fruit(); $apple->setName("大苹果"); $apple->setColor("红色"); echo $apple->showColor(); $clone_apple = clone $apple; $clone_apple->setColor("青色"); echo $clone_apple->showColor(); ?>
clone 메소드는 새로운 클래스를 복제하므로 이때 메모리에는 두 개의 객체가 있습니다.
PHP의 __clone() 메소드는 객체 인스턴스의 얕은 복사본을 만듭니다. 객체의 기본 숫자 유형은 값으로 복사되며, __clone 메소드가 재정의되지 않으면 객체의 객체 유형 멤버 변수는 분명히 개체 멤버 변수가 양식에서 복제되면 아래 예제의 28행에 있는 설명과 같이 새 개체를 생성하는 대신 멤버 변수가 참조로 복사됩니다.
<?php class Account { public $balance; public function __construct($balance) { $this->balance = $balance; } } class Person { private $id; private $name; private $age; public $account; public function __construct($name, $age, Account $account) { $this->name = $name; $this->age = $age; $this->account = $account; } public function setId($id) { $this->id = $id; } public function __clone() { #复制方法,可在里面定义再clone是进行的操作 $this->id = 0; $this->account = clone $this->account; #不加这一句,account在clone是会只被复制引用,其中一个account的balance被修改另一个也同样会被修改 } } $person = new Person("peter", 15, new Account(1000)); $person->setId(1); $person2 = clone $person; $person2->account->balance = 250; var_dump($person, $person2); ?>