A
Q. What will be the output of the following PHP code ?
Code:
<?php
$t = 5;
if ($t-- == ++$t)
{
echo $t;
}
?>
$t = 5;
if ($t-- == ++$t)
{
echo $t;
}
?>
- Correct Answer - Option(D)
- Views: 21
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.