Q. Which one is a valid way to define a constant?
β
Correct Answer: (A)
define('PI', 3.14);
Explanation: define() is used to create constants in PHP.