1
resposta

DUVIDA

while ($studentData = $statement->fetch(fetch_style: PDO::FETCH_ASSOC)) {
    $student = new Student(
        $studentData['id'],
        $studentData['name'],
        new \DateTimeImmutable($studentData['birth_date'])
    );

    echo $student->age() . PHP_EOL;
}

Boa tarde, não consegui entender esse código !

1 resposta

Olá, Rafael. Qual parte exatamente você não entendeu?

PS.: fetch_style: não é parte do código. Isso é só algo que a IDE mostra para identificar o nome do parâmetro, entende?