<<< Previous question <<< Question ID#0332.md >>> Next question >>>
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