mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-10 03:01:01 +00:00
11 lines
207 B
PHP
11 lines
207 B
PHP
<?php
|
|
spl_autoload_register();
|
|
|
|
$reflect = new ReflectionClass(MVC\Page::class);
|
|
|
|
echo '<pre>';
|
|
foreach ($reflect->getAttributes() as $attribute) {
|
|
echo $attribute->getName() . PHP_EOL;
|
|
}
|
|
echo '</pre>';
|