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.

14 lines
263 B

3 years ago
  1. <?php
  2. class dog{
  3. public $color = 'yellow';
  4. public function show()
  5. {
  6. echo "color=".$this->color.'<br>';
  7. }
  8. }
  9. $adog = new dog();
  10. $anthorDog = clone $adog;
  11. $adog->show();
  12. $anthorDog->show();
  13. ?>