Home / Programming MCQs / PHP MCQs / Question
P
Q. What will be the output of the following PHP code ?
<?php $t = 5; if ($t-- == ++$t) { echo $t; } ?>
First $t = 5 is compared to and then decremented, then incremented and compared to $t = 5.
You must be Logged in to update hint/solution
What will be the output of the following PHP code ?
What will be the output of the following PHP code ?
What is the result of the following PHP code?
What is the result of the following PHP code?
Which of the following must be installed on your computer so as to run PHP script?
What will be the output of the following code?
What is the use of PHP sort() function?
What will be the output of the following PHP code ?
_______ character do the error _reporting directive use to represent the logical operator NOT.
Which of the following is the Release date of latest version (7.2) of php?
Discusssion
Login to discuss.