PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php class Point { public $x; public $y; } function dup($point1) { $point2 = new Point(); $point2->x = $point1->x; $point2->y = $point1->y; return $point2; } $point1 = new Point(); $point1->x = 3; $point1->y = 5; $point2 = dup($point1); print_r($point2);
Show:  
Copy Clear