Files
php_8/classes/objects.php
2022-04-10 18:52:14 +03:00

14 lines
184 B
PHP

<?php
require 'point.php';
$first = new Point;
$first->x = 3;
$first->y = 3;
$second = $first;
$second->x = 5;
$second->y = 5;
echo "x: {$first->x}, y: {$first->y}"; // x: 5, y: 5