fork(2) download
  1. <?php
  2.  
  3. for ($a = 1, $b = 1; $a < 10, $b < 10; $a++, $b++, $c = $a * $b) {
  4. echo "$a * $b = $c\n";
  5. }
  6.  
Success #stdin #stdout #stderr 0.02s 23652KB
stdin
Standard input is empty
stdout
1 * 1 = 
2 * 2 = 4
3 * 3 = 9
4 * 4 = 16
5 * 5 = 25
6 * 6 = 36
7 * 7 = 49
8 * 8 = 64
9 * 9 = 81
stderr
PHP Notice:  Undefined variable: c in /home/x8JW8D/prog.php on line 4