You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
352 B

3 years ago
3 years ago
3 years ago
  1. <?php
  2. /**
  3. * 克隆实质是在内存中复制多了一个独立的对象数据
  4. */
  5. class dog{
  6. public $color = 'yellow';
  7. public function show()
  8. {
  9. echo "color=".$this->color.'<br>';
  10. }
  11. }
  12. $adog = new dog();
  13. $anthorDog = clone $adog;
  14. $adog->show();
  15. $anthorDog->show();
  16. ?>