Files
php_8/methods/property_exists.php
2022-05-02 19:15:17 +03:00

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
}