Basic PHP
What will be the output of the following code?
function track() {
static $count = 0;
$count++;
echo $count;
}
track();
track();
track();

123
111
000
011

ANSWER DOWNLOAD EXAMIANS APP