<<< Previous question <<< Question ID#0030.md >>> Next question >>>
Which of the following code can be used to create case insensitive constant?
- A)
define("GREETING","How are you today?",TRUE);
echo constant("greeting");
- B)
define("GREETING","How are you today?");
echo constant("greeting");
- C)
define("GREETING","How are you today?",FALSE);
echo constant("greeting");
- D)
define("GREETING","How are you today?",'USECASE');
echo constant("greeting");
Answer
Answer: A