Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 444 Bytes

0332.md

File metadata and controls

24 lines (20 loc) · 444 Bytes

What is the output of the following PHP script?

define('123MESSAGE''123');
if (strlen(123MESSAGE) == 12) {
    echo 123MESSAGE;
} else {
    echo 'ABC';
}
  • A) Syntax Error
  • B) 123
  • C) ABC123MESSAGE
  • D) ABC123
Answer

Answer: A