mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-29 12:52:43 +00:00
8 lines
105 B
PHP
8 lines
105 B
PHP
<?php
|
|
require_once 'greeting.php';
|
|
|
|
$greeting = new Greeting;
|
|
|
|
$greeting->x = 5;
|
|
echo $greeting->x; // 5
|