<?php class mycoach { public function __construct($name,$age) { $this->name = $name; $this->age = $age; } } $cpc = new mycoach("陈培昌",22); $cj = $cpc; var_dump($cj,$cpc); $cj2 = clone $cpc; var_dump($cj2,$cpc); ?>
原文地址:https://www.cnblogs.com/saintdingspage/p/10990923.html
时间: 2024-10-10 10:06:31