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