/tech/ - Tech 2.0
Max message length: 4096
(used to delete files and postings)
Remember to follow the rules
[orange]?php class Shape { private int $x; private int $y; private string $color; function __construct($x = 1, $y = 2, $color = "#FAFAFA") { $this->x = $x; $this->y = $y; $this->color = $color; } public function create(Shape $source) { var_dump($source->x); $this->x = $source->x; $this->y = $source->y; $this->color = $source->color; } } $s1 = new Shape(); $s2 = new Shape(3, 4, "#4e4e4e"); var_dump( $s1 ); $s1->create($s2); var_dump( $s1 ); ?>