mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-25 17:13:08 +00:00
11 lines
213 B
PHP
11 lines
213 B
PHP
<?php
|
|
require_once 'construct_private.php';
|
|
|
|
$point = new Point(x: 3, y: 5);
|
|
|
|
echo '<pre>';
|
|
print_r($point);
|
|
echo '<pre>';
|
|
|
|
echo $point->x; // Fatal error: Uncaught Error: Cannot access private property Point::$x
|