mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
7 lines
243 B
PHP
7 lines
243 B
PHP
<?php
|
|
require_once 'construct_call.php';
|
|
|
|
$point = new Point(); // Вызов конструктора
|
|
$point->__construct(); // Вызов конструктора
|
|
$point->inner(); // Вызов конструктора
|