Programming Languages PHP Objective
Sep 23, 2025

Which PHP 8.1 feature allows you to create enumerations?

Choose the correct answer:
A) enum
B) enumerate
C) const enum
D) final enum
Detailed Explanation

Explanation: PHP 8.1 introduced native enumerations using the "enum" keyword. Enums provide a way to define a type with a fixed set of possible values, improving type safety and code clarity.

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback