mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
10 lines
150 B
PHP
10 lines
150 B
PHP
<?php
|
|
require_once 'greeting.php';
|
|
|
|
$greeting = new Greeting;
|
|
|
|
$greeting->x = 5;
|
|
if (property_exists($greeting, 'x')) {
|
|
echo $greeting->x; // 5
|
|
}
|