A
Q. What will be the output of the following PHP code ?
Code:
<?php
$k = 15;
--$k;
echo $k++;
?>
$k = 15;
--$k;
echo $k++;
?>
- Correct Answer - Option(B)
- Views: 9
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.