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

011
123
111
000

ANSWER DOWNLOAD EXAMIANS APP