标签:span his this div com size struct dump style
<?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);
?>
标签:span his this div com size struct dump style
原文地址:https://www.cnblogs.com/saintdingspage/p/10990923.html