fork download
  1. <?php function f($a){while(array_pop($a))$i++;return+$i;}
  2. echo(f(array()));
  3. echo(f(array(FALSE)));
  4. echo(f(array(TRUE)));
  5. echo(f(array(FALSE,TRUE,TRUE,FALSE,FALSE)));
  6. echo(f(array(TRUE,TRUE,TRUE,FALSE,TRUE)));
  7. echo(f(array(TRUE,TRUE,FALSE,TRUE,TRUE)));
  8. echo(f(array(FALSE,FALSE,TRUE,TRUE,TRUE)));
  9. echo(f(array(TRUE,TRUE,TRUE,TRUE,TRUE,TRUE)));
Success #stdin #stdout #stderr 0.01s 52488KB
stdin
array()
stdout
00101236
stderr
PHP Notice:  Undefined variable: i in /home/50yRmV/prog.php on line 1
PHP Notice:  Undefined variable: i in /home/50yRmV/prog.php on line 1
PHP Notice:  Undefined variable: i in /home/50yRmV/prog.php on line 1
PHP Notice:  Undefined variable: i in /home/50yRmV/prog.php on line 1
PHP Notice:  Undefined variable: i in /home/50yRmV/prog.php on line 1
PHP Notice:  Undefined variable: i in /home/50yRmV/prog.php on line 1
PHP Notice:  Undefined variable: i in /home/50yRmV/prog.php on line 1
PHP Notice:  Undefined variable: i in /home/50yRmV/prog.php on line 1