1.

What will be the output of the following code?
<?php
function track()
{
static $var = 0;
$var++;
echo $var;
}
track();
track();
track();
?>

A. 000
B. 010
C. 110
D. 123
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs