mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-13 14:45:09 +00:00
10 lines
156 B
PHP
10 lines
156 B
PHP
<?php
|
|
require 'point.php';
|
|
// class Point
|
|
// {
|
|
// public $x;
|
|
// public $y;
|
|
// }
|
|
$point = new Point;
|
|
echo $x; // PHP Warning: Undefined variable $x
|