mirror of
https://github.com/igorsimdyanov/php8.git
synced 2026-01-14 03:00:06 +00:00
14 lines
184 B
PHP
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
|