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

011
111
123
000

ANSWER DOWNLOAD EXAMIANS APP