Files
php_8/methods/list_variables.php
2022-05-02 19:14:30 +03:00

19 lines
249 B
PHP

<?php
class Point {
private $x;
private $y;
public function getVariables() : array
{
return get_object_vars($this);
}
}
$point = new Point;
$point->z = 5;
echo '<pre>';
print_r($point->getVariables());
echo '</pre>';