mirror of
https://github.com/igorsimdyanov/php8.git
synced 2026-01-14 03:00:06 +00:00
11 lines
366 B
PHP
11 lines
366 B
PHP
<?php
|
|
// Подключаем объявление класса
|
|
require_once('private_point.php');
|
|
|
|
// Объявляем объект класса PrivatePoint
|
|
$point = new PrivatePoint;
|
|
|
|
// Присваиваем значения переменным объекта
|
|
$point->x = 3;
|
|
$point->y = 1; // PHP Fatal error: Uncaught Error: Cannot access private property
|