Sr. PHP Programmer Question:

What is the value of "$day" in the below code?

Tweet Share WhatsApp

Answer:

$wed= 1;
$day = ($wed==1) ? 'today' : 'tomorrow';
// $day is now set to 'today'

Companies often ask about the ternary operator (?). which is simply a shorthand for if else statements.

Download Senior PHP Programmer PDF Read All 202 Senior PHP Programmer Questions
Previous QuestionNext Question
What is the purpose of date() function?What is the purpose of $_COOKIE variable in PHP?