-
-
class person { - private $name;
- プライベート$年齢;
- プライベート $id;
function __construct( $name, $age ) {
- $this->name = $name;
- $this->age = $age;
- }
function setId( $id ) {
- $this->id = $id;
- }
-
- function __clone() {
- $this->id = 0;
- }
- }
- print "
"; <li>$person = 新しい Person( "bob", 44 );<li>$person->setId( 343 );</li>
<li>$person2 = クローン $person;</li>
<li>print_r( $person );</li>
<li>print_r( $person2 );</li>
<li>print " ";
- ?>
-
复制代码
演示代2:
-
-
class Account { - public $balance;
- function __construct( $balance ) {
- $this->balance = $balance;
- }
- } p>
class person {
- private $name;
- private $age;
- private $id;
- public $account;
function __construct( $name, $age, Account $account ) {
- $this->name = $name;
- $this->age = $age;
- $this->account = $account;
- }< ;/p>
function setId( $id ) {
- $this->id = $id;
- }
function __clone() {
- $this->id = 0;
- }
- }
$person = new person( "bob", 44, new Account( 200 ) );
- $ person->setId( 343 );
- $person2 = クローン $person;
// $person にお金をあげます
- $person->account->残高 += 10;
- // $person2 にもクレジットが表示されます
- print $person2->account->balance;
// Output:
- // 210
- ?>
-
复制番号
官方文档:http://cn2.php.net/__clone
|