What does this program print?

from Magic methods
PHP 8.3.33 beginner 2 min

What does this program print?

php
<?php
final class CodeBox
{
    public function __construct(private array $values) {}
    public function __get(string $name): mixed
    {
        echo "get:{$name}\n";
        return $this->values[$name];
    }
}
$box = new CodeBox(['code' => 'A7']);
echo $box->code, PHP_EOL;
Open in playground
Report an error