Q. How do you declare a constant in PHP using the const keyword?
β
Correct Answer: (A)
const PI = 3.14;
Explanation: const keyword is used to declare constants at compile time.