Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 649 Bytes

0030.md

File metadata and controls

35 lines (28 loc) · 649 Bytes

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