1.

<?php$i=10;function sample($i){ $i++; echo $i.",";}echo $i.",";GLOBAL $i;sample($i);echo $i;?>18.Predict the output of the following code snippet :

A. 10,20,10
B. 10,24,10
C. 10,20,20
D. 10,22,10
Answer» B. 10,24,10


Discussion

No Comment Found