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

14 lines
156 B
PHP

<?php
require 'point.php';
$fst = new Point;
$fst->x = 3;
$fst->y = 3;
$snd = new Point;
$snd->x = 5;
$snd->y = 5;
echo $fst->x; // 3
echo $snd->x; // 5