Lines Matching refs:i

27   /* test just about any operator possible on $i and $j (ints) */
28 $i = 5;
31 Correct result - 8: <?php echo $i+$j; ?>
33 Correct result - 8: <?php echo $i+$j; ?>
35 Correct result - 2: <?php echo $i-$j; ?>
37 Correct result - -2: <?php echo $j-$i; ?>
39 Correct result - 15: <?php echo $i*$j; ?>
41 Correct result - 15: <?php echo $j*$i; ?>
43 Correct result - 2: <?php echo $i%$j; ?>
45 Correct result - 3: <?php echo $j%$i; ?>
51 /* test just about any operator possible on $i and $j (floats) */
52 $i = 5.0;
55 Correct result - 8: <?php echo $i+$j; ?>
57 Correct result - 8: <?php echo $i+$j; ?>
59 Correct result - 2: <?php echo $i-$j; ?>
61 Correct result - -2: <?php echo $j-$i; ?>
63 Correct result - 15: <?php echo $i*$j; ?>
65 Correct result - 15: <?php echo $j*$i; ?>
67 Correct result - 2: <?php echo $i%$j; ?>
69 Correct result - 3: <?php echo $j%$i; ?>
112 $i=$j=0;
118 $i += $j;
120 $j = ++$i;
122 $j *= $i;
125 $j /= $i;
130 $i++; $j++;
134 $i++;
144 $i = ++$j;
147 $j = ++$i;
149 $j = $i*2+$j*($i++);
151 $i++;
165 $i++;
169 …$j=$i++; /* this should set $i to 1, but shouldn't change $j (it's assigned $i's previous values,…
170 echo "this should be displayed. should be: \$i=1, \$j=0. is: \$i=$i, \$j=$j\n";
172 $j += ++$i; /* ++$i --> $i==2, $j += 2 --> $j==2 */
176 $i += 50;
183 $j *= $i; /* $j *= 2 --> $j == 4 */
184 echo "this is supposed to be displayed. should be: \$i=2, \$j=4. is: \$i=$i, \$j=$j\n";
186 while ($i<=$j) {
187 echo $i++." $j\n";
218 $i=0;
220 while ($i<(2*$j)) {
221 if ($i>$j) {
222 echo "$i is greater than $j\n";
223 } else if ($i==$j) {
224 echo "$i equals $j\n";
226 echo "$i is smaller than $j\n";
228 $i++;
238 $i=0;
239 while ($i<$arr_len) {
244 ${"test$i$j"}[$k] = $i+$j+$k;
249 $i++;
254 $i=0;
255 while ($i<$arr_len) {
260 echo "\${test$i$j}[$k] = ".${"test$i$j"}[$k]."\n";
265 $i++;
273 $i=0;
275 while ($i<10000) {
276 $arr[$i]=$i;
277 $i++;
280 $i=0;
281 while ($i<10000) {
282 echo $arr[$i++]."\n";
292 $i = 10;
294 while ($i > 0) {
297 $resize[$a] = $i;
298 $i--;
300 $i = 10;
302 while ($i > 0) {
306 $i--;
314 $i=0;
316 echo "\$i should go from 0 to 2\n";
317 while ($i<5) {
318 if ($i>2) {
357 echo "\$i=$i\n";
358 $i++;
413 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
414 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
539 $i should go from 0 to 2
555 $i=0
571 $i=1
587 $i=2
638 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
639 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
764 $i should go from 0 to 2
780 $i=0
796 $i=1
812 $i=2
863 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
864 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
989 $i should go from 0 to 2
1005 $i=0
1021 $i=1
1037 $i=2
1088 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
1089 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
1214 $i should go from 0 to 2
1230 $i=0
1246 $i=1
1262 $i=2
1313 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
1314 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
1439 $i should go from 0 to 2
1455 $i=0
1471 $i=1
1487 $i=2
1538 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
1539 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
1664 $i should go from 0 to 2
1680 $i=0
1696 $i=1
1712 $i=2
1763 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
1764 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
1889 $i should go from 0 to 2
1905 $i=0
1921 $i=1
1937 $i=2
1988 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
1989 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
2114 $i should go from 0 to 2
2130 $i=0
2146 $i=1
2162 $i=2
2213 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
2214 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
2339 $i should go from 0 to 2
2355 $i=0
2371 $i=1
2387 $i=2
2438 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
2439 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
2564 $i should go from 0 to 2
2580 $i=0
2596 $i=1
2612 $i=2
2663 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
2664 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
2789 $i should go from 0 to 2
2805 $i=0
2821 $i=1
2837 $i=2
2888 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
2889 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
3014 $i should go from 0 to 2
3030 $i=0
3046 $i=1
3062 $i=2
3113 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
3114 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
3239 $i should go from 0 to 2
3255 $i=0
3271 $i=1
3287 $i=2
3338 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
3339 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
3464 $i should go from 0 to 2
3480 $i=0
3496 $i=1
3512 $i=2
3563 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
3564 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
3689 $i should go from 0 to 2
3705 $i=0
3721 $i=1
3737 $i=2
3788 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
3789 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
3914 $i should go from 0 to 2
3930 $i=0
3946 $i=1
3962 $i=2
4013 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
4014 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
4139 $i should go from 0 to 2
4155 $i=0
4171 $i=1
4187 $i=2
4238 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
4239 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
4364 $i should go from 0 to 2
4380 $i=0
4396 $i=1
4412 $i=2
4463 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
4464 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
4589 $i should go from 0 to 2
4605 $i=0
4621 $i=1
4637 $i=2
4688 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
4689 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
4814 $i should go from 0 to 2
4830 $i=0
4846 $i=1
4862 $i=2
4913 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
4914 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
5039 $i should go from 0 to 2
5055 $i=0
5071 $i=1
5087 $i=2
5138 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
5139 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
5264 $i should go from 0 to 2
5280 $i=0
5296 $i=1
5312 $i=2
5363 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
5364 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
5489 $i should go from 0 to 2
5505 $i=0
5521 $i=1
5537 $i=2
5588 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
5589 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
5714 $i should go from 0 to 2
5730 $i=0
5746 $i=1
5762 $i=2
5813 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
5814 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
5939 $i should go from 0 to 2
5955 $i=0
5971 $i=1
5987 $i=2
6038 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
6039 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
6164 $i should go from 0 to 2
6180 $i=0
6196 $i=1
6212 $i=2
6263 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
6264 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
6389 $i should go from 0 to 2
6405 $i=0
6421 $i=1
6437 $i=2
6488 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
6489 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
6614 $i should go from 0 to 2
6630 $i=0
6646 $i=1
6662 $i=2
6713 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
6714 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
6839 $i should go from 0 to 2
6855 $i=0
6871 $i=1
6887 $i=2
6938 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
6939 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
7064 $i should go from 0 to 2
7080 $i=0
7096 $i=1
7112 $i=2
7163 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
7164 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
7289 $i should go from 0 to 2
7305 $i=0
7321 $i=1
7337 $i=2
7388 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
7389 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
7514 $i should go from 0 to 2
7530 $i=0
7546 $i=1
7562 $i=2
7613 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
7614 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
7739 $i should go from 0 to 2
7755 $i=0
7771 $i=1
7787 $i=2
7838 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
7839 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
7964 $i should go from 0 to 2
7980 $i=0
7996 $i=1
8012 $i=2
8063 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
8064 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
8189 $i should go from 0 to 2
8205 $i=0
8221 $i=1
8237 $i=2
8288 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
8289 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
8414 $i should go from 0 to 2
8430 $i=0
8446 $i=1
8462 $i=2
8513 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
8514 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
8639 $i should go from 0 to 2
8655 $i=0
8671 $i=1
8687 $i=2
8738 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
8739 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
8864 $i should go from 0 to 2
8880 $i=0
8896 $i=1
8912 $i=2
8963 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
8964 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
9089 $i should go from 0 to 2
9105 $i=0
9121 $i=1
9137 $i=2
9188 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
9189 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
9314 $i should go from 0 to 2
9330 $i=0
9346 $i=1
9362 $i=2
9413 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
9414 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
9539 $i should go from 0 to 2
9555 $i=0
9571 $i=1
9587 $i=2
9638 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
9639 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
9764 $i should go from 0 to 2
9780 $i=0
9796 $i=1
9812 $i=2
9863 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
9864 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
9989 $i should go from 0 to 2
10005 $i=0
10021 $i=1
10037 $i=2
10088 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
10089 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
10214 $i should go from 0 to 2
10230 $i=0
10246 $i=1
10262 $i=2
10313 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
10314 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
10439 $i should go from 0 to 2
10455 $i=0
10471 $i=1
10487 $i=2
10538 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
10539 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
10664 $i should go from 0 to 2
10680 $i=0
10696 $i=1
10712 $i=2
10763 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
10764 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
10889 $i should go from 0 to 2
10905 $i=0
10921 $i=1
10937 $i=2
10988 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
10989 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
11114 $i should go from 0 to 2
11130 $i=0
11146 $i=1
11162 $i=2
11213 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
11214 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
11339 $i should go from 0 to 2
11355 $i=0
11371 $i=1
11387 $i=2
11438 this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0
11439 this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=4
11564 $i should go from 0 to 2
11580 $i=0
11596 $i=1
11612 $i=2