Best Phake code snippet using is
024.phpt
Source:024.phpt
...4<?php5for ($jdk=0; $jdk<50; $jdk++) {6?><html>7<head>8<?php /* the point of this file is to intensively test various aspects of the parser.9 * right now, each test focuses in one aspect only (e.g. variable aliasing, arithemtic operator,10 * various control structures), while trying to combine code from other parts of the parser as well.11 */12?>13*** Testing assignments and variable aliasing: ***14<?php15 /* This test tests assignments to variables using other variables as variable-names */16 $a = "b";17 $$a = "test";18 $$$a = "blah";19 ${$$$a}["associative arrays work too"] = "this is nifty";20?>21This should read "blah": <?php echo "$test\n"; ?>22This should read "this is nifty": <?php echo $blah[$test="associative arrays work too"]."\n"; ?>23*************************************************24*** Testing integer operators ***25<?php26 /* test just about any operator possible on $i and $j (ints) */27 $i = 5;28 $j = 3;29?>30Correct result - 8: <?php echo $i+$j; ?>31Correct result - 8: <?php echo $i+$j; ?>32Correct result - 2: <?php echo $i-$j; ?>33Correct result - -2: <?php echo $j-$i; ?>34Correct result - 15: <?php echo $i*$j; ?>35Correct result - 15: <?php echo $j*$i; ?>36Correct result - 2: <?php echo $i%$j; ?>37Correct result - 3: <?php echo $j%$i; ?>38*********************************39*** Testing real operators ***40<?php41 /* test just about any operator possible on $i and $j (floats) */42 $i = 5.0;43 $j = 3.0;44?>45Correct result - 8: <?php echo $i+$j; ?>46Correct result - 8: <?php echo $i+$j; ?>47Correct result - 2: <?php echo $i-$j; ?>48Correct result - -2: <?php echo $j-$i; ?>49Correct result - 15: <?php echo $i*$j; ?>50Correct result - 15: <?php echo $j*$i; ?>51Correct result - 2: <?php echo $i%$j; ?>52Correct result - 3: <?php echo $j%$i; ?>53*********************************54*** Testing if/elseif/else control ***55<?php56/* sick if/elseif/else test by Andi :) */57$a = 5;58if ($a == "4") {59 echo "This "." does "." not "." work\n";60} elseif ($a == "5") {61 echo "This "." works\n";62 $a = 6;63 if ("andi" == ($test = "andi")) {64 echo "this_still_works\n";65 } elseif (1) {66 echo "should_not_print\n";67 } else {68 echo "should_not_print\n";69 }70 if (44 == 43) {71 echo "should_not_print\n";72 } else {73 echo "should_print\n";74 }75} elseif ($a == 6) {76 echo "this "."broken\n";77 if (0) {78 echo "this_should_not_print\n";79 } else {80 echo "TestingDanglingElse_This_Should_not_print\n";81 }82} else {83 echo "This "."does "." not"." work\n";84}85?>86*** Seriously nested if's test ***87** spelling correction by kluzz **88<?php89/* yet another sick if/elseif/else test by Zeev */90$i=$j=0;91echo "Only two lines of text should follow:\n";92if (0) { /* this code is not supposed to be executed */93 echo "hmm, this shouldn't be displayed #1\n";94 $j++;95 if (1) {96 $i += $j;97 if (0) {98 $j = ++$i;99 if (1) {100 $j *= $i;101 echo "damn, this shouldn't be displayed\n";102 } else {103 $j /= $i;104 ++$j;105 echo "this shouldn't be displayed either\n";106 }107 } elseif (1) {108 $i++; $j++;109 echo "this isn't supposed to be displayed\n";110 }111 } elseif (0) {112 $i++;113 echo "this definitely shouldn't be displayed\n";114 } else {115 --$j;116 echo "and this too shouldn't be displayed\n";117 while ($j>0) {118 $j--;119 }120 }121} elseif (2-2) { /* as long as 2-2==0, this isn't supposed to be executed either */122 $i = ++$j;123 echo "hmm, this shouldn't be displayed #2\n";124 if (1) {125 $j = ++$i;126 if (0) {127 $j = $i*2+$j*($i++);128 if (1) {129 $i++;130 echo "damn, this shouldn't be displayed\n";131 } else {132 $j++;133 echo "this shouldn't be displayed either\n";134 }135 } else if (1) {136 ++$j;137 echo "this isn't supposed to be displayed\n";138 }139 } elseif (0) {140 $j++;141 echo "this definitely shouldn't be displayed\n";142 } else {143 $i++;144 echo "and this too shouldn't be displayed\n";145 }146} else {147 $j=$i++; /* this should set $i to 1, but shouldn't change $j (it's assigned $i's previous values, zero) */148 echo "this should be displayed. should be: \$i=1, \$j=0. is: \$i=$i, \$j=$j\n";149 if (1) {150 $j += ++$i; /* ++$i --> $i==2, $j += 2 --> $j==2 */151 if (0) {152 $j += 40;153 if (1) {154 $i += 50;155 echo "damn, this shouldn't be displayed\n";156 } else {157 $j += 20;158 echo "this shouldn't be displayed either\n";159 }160 } else if (1) {161 $j *= $i; /* $j *= 2 --> $j == 4 */162 echo "this is supposed to be displayed. should be: \$i=2, \$j=4. is: \$i=$i, \$j=$j\n";163 echo "3 loop iterations should follow:\n";164 while ($i<=$j) {165 echo $i++." $j\n";166 }167 }168 } elseif (0) {169 echo "this definitely shouldn't be displayed\n";170 } else {171 echo "and this too shouldn't be displayed\n";172 }173 echo "**********************************\n";174}175?>176*** C-style else-if's ***177<?php178 /* looks like without we even tried, C-style else-if structure works fine! */179 if ($a=0) {180 echo "This shouldn't be displayed\n";181 } else if ($a++) {182 echo "This shouldn't be displayed either\n";183 } else if (--$a) {184 echo "No, this neither\n";185 } else if (++$a) {186 echo "This should be displayed\n";187 } else {188 echo "This shouldn't be displayed at all\n";189 }190?>191*************************192*** WHILE tests ***193<?php194$i=0;195$j=20;196while ($i<(2*$j)) {197 if ($i>$j) {198 echo "$i is greater than $j\n";199 } else if ($i==$j) {200 echo "$i equals $j\n";201 } else {202 echo "$i is smaller than $j\n";203 }204 $i++;205}206?>207*******************208*** Nested WHILEs ***209<?php210$arr_len=3;211$i=0;212while ($i<$arr_len) {213 $j=0;214 while ($j<$arr_len) {215 $k=0;216 while ($k<$arr_len) {217 ${"test$i$j"}[$k] = $i+$j+$k;218 $k++;219 }220 $j++;221 }222 $i++;223}224echo "Each array variable should be equal to the sum of its indices:\n";225$i=0;226while ($i<$arr_len) {227 $j=0;228 while ($j<$arr_len) {229 $k=0;230 while ($k<$arr_len) {231 echo "\${test$i$j}[$k] = ".${"test$i$j"}[$k]."\n";232 $k++;233 }234 $j++;235 }236 $i++;237}238?>239*********************240*** hash test... ***241<?php242/*243$i=0;244while ($i<10000) {245 $arr[$i]=$i;246 $i++;247}248$i=0;249while ($i<10000) {250 echo $arr[$i++]."\n";251}252*/253echo "commented out...";254?>255**************************256*** Hash resizing test ***257<?php258$i = 10;259$a = "b";260while ($i > 0) {261 $a = $a . "a";262 echo "$a\n";263 $resize[$a] = $i;264 $i--;265}266$i = 10;267$a = "b";268while ($i > 0) {269 $a = $a . "a";270 echo "$a\n";271 echo $resize[$a]."\n";272 $i--;273}274?>275**************************276*** break/continue test ***277<?php278$i=0;279echo "\$i should go from 0 to 2\n";280while ($i<5) {281 if ($i>2) {282 break;283 }284 $j=0;285 echo "\$j should go from 3 to 4, and \$q should go from 3 to 4\n";286 while ($j<5) {287 if ($j<=2) {288 $j++;289 continue;290 }291 echo " \$j=$j\n";292 for ($q=0; $q<=10; $q++) {293 if ($q<3) {294 continue;295 }296 if ($q>4) {297 break;298 }299 echo " \$q=$q\n";300 }301 $j++;302 }303 $j=0;304 echo "\$j should go from 0 to 2\n";305 while ($j<5) {306 if ($j>2) {307 $k=0;308 echo "\$k should go from 0 to 2\n";309 while ($k<5) {310 if ($k>2) {311 break 2;312 }313 echo " \$k=$k\n";314 $k++;315 }316 }317 echo " \$j=$j\n";318 $j++;319 }320 echo "\$i=$i\n";321 $i++;322}323?>324***********************325*** Nested file include test ***326<?php include("023-2.inc"); ?>327********************************328<?php329{330 echo "Tests completed.\n"; # testing some PHP style comment...331}332} ?>333--EXPECT--334<html>335<head>336*** Testing assignments and variable aliasing: ***337This should read "blah": blah338This should read "this is nifty": this is nifty339*************************************************340*** Testing integer operators ***341Correct result - 8: 8342Correct result - 8: 8343Correct result - 2: 2344Correct result - -2: -2345Correct result - 15: 15346Correct result - 15: 15347Correct result - 2: 2348Correct result - 3: 3349*********************************350*** Testing real operators ***351Correct result - 8: 8352Correct result - 8: 8353Correct result - 2: 2354Correct result - -2: -2355Correct result - 15: 15356Correct result - 15: 15357Correct result - 2: 2358Correct result - 3: 3359*********************************360*** Testing if/elseif/else control ***361This works362this_still_works363should_print364*** Seriously nested if's test ***365** spelling correction by kluzz **366Only two lines of text should follow:367this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0368this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=43693 loop iterations should follow:3702 43713 43724 4373**********************************374*** C-style else-if's ***375This should be displayed376*************************377*** WHILE tests ***3780 is smaller than 203791 is smaller than 203802 is smaller than 203813 is smaller than 203824 is smaller than 203835 is smaller than 203846 is smaller than 203857 is smaller than 203868 is smaller than 203879 is smaller than 2038810 is smaller than 2038911 is smaller than 2039012 is smaller than 2039113 is smaller than 2039214 is smaller than 2039315 is smaller than 2039416 is smaller than 2039517 is smaller than 2039618 is smaller than 2039719 is smaller than 2039820 equals 2039921 is greater than 2040022 is greater than 2040123 is greater than 2040224 is greater than 2040325 is greater than 2040426 is greater than 2040527 is greater than 2040628 is greater than 2040729 is greater than 2040830 is greater than 2040931 is greater than 2041032 is greater than 2041133 is greater than 2041234 is greater than 2041335 is greater than 2041436 is greater than 2041537 is greater than 2041638 is greater than 2041739 is greater than 20418*******************419*** Nested WHILEs ***420Each array variable should be equal to the sum of its indices:421${test00}[0] = 0422${test00}[1] = 1423${test00}[2] = 2424${test01}[0] = 1425${test01}[1] = 2426${test01}[2] = 3427${test02}[0] = 2428${test02}[1] = 3429${test02}[2] = 4430${test10}[0] = 1431${test10}[1] = 2432${test10}[2] = 3433${test11}[0] = 2434${test11}[1] = 3435${test11}[2] = 4436${test12}[0] = 3437${test12}[1] = 4438${test12}[2] = 5439${test20}[0] = 2440${test20}[1] = 3441${test20}[2] = 4442${test21}[0] = 3443${test21}[1] = 4444${test21}[2] = 5445${test22}[0] = 4446${test22}[1] = 5447${test22}[2] = 6448*********************449*** hash test... ***450commented out...451**************************452*** Hash resizing test ***453ba454baa455baaa456baaaa457baaaaa458baaaaaa459baaaaaaa460baaaaaaaa461baaaaaaaaa462baaaaaaaaaa463ba46410465baa4669467baaa4688469baaaa4707471baaaaa4726473baaaaaa4745475baaaaaaa4764477baaaaaaaa4783479baaaaaaaaa4802481baaaaaaaaaa4821483**************************484*** break/continue test ***485$i should go from 0 to 2486$j should go from 3 to 4, and $q should go from 3 to 4487 $j=3488 $q=3489 $q=4490 $j=4491 $q=3492 $q=4493$j should go from 0 to 2494 $j=0495 $j=1496 $j=2497$k should go from 0 to 2498 $k=0499 $k=1500 $k=2501$i=0502$j should go from 3 to 4, and $q should go from 3 to 4503 $j=3504 $q=3505 $q=4506 $j=4507 $q=3508 $q=4509$j should go from 0 to 2510 $j=0511 $j=1512 $j=2513$k should go from 0 to 2514 $k=0515 $k=1516 $k=2517$i=1518$j should go from 3 to 4, and $q should go from 3 to 4519 $j=3520 $q=3521 $q=4522 $j=4523 $q=3524 $q=4525$j should go from 0 to 2526 $j=0527 $j=1528 $j=2529$k should go from 0 to 2530 $k=0531 $k=1532 $k=2533$i=2534***********************535*** Nested file include test ***536<html>537This is Finish.phtml. This file is supposed to be included538from regression_test.phtml. This is normal HTML.539and this is PHP code, 2+2=4540</html>541********************************542Tests completed.543<html>544<head>545*** Testing assignments and variable aliasing: ***546This should read "blah": blah547This should read "this is nifty": this is nifty548*************************************************549*** Testing integer operators ***550Correct result - 8: 8551Correct result - 8: 8552Correct result - 2: 2553Correct result - -2: -2554Correct result - 15: 15555Correct result - 15: 15556Correct result - 2: 2557Correct result - 3: 3558*********************************559*** Testing real operators ***560Correct result - 8: 8561Correct result - 8: 8562Correct result - 2: 2563Correct result - -2: -2564Correct result - 15: 15565Correct result - 15: 15566Correct result - 2: 2567Correct result - 3: 3568*********************************569*** Testing if/elseif/else control ***570This works571this_still_works572should_print573*** Seriously nested if's test ***574** spelling correction by kluzz **575Only two lines of text should follow:576this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0577this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=45783 loop iterations should follow:5792 45803 45814 4582**********************************583*** C-style else-if's ***584This should be displayed585*************************586*** WHILE tests ***5870 is smaller than 205881 is smaller than 205892 is smaller than 205903 is smaller than 205914 is smaller than 205925 is smaller than 205936 is smaller than 205947 is smaller than 205958 is smaller than 205969 is smaller than 2059710 is smaller than 2059811 is smaller than 2059912 is smaller than 2060013 is smaller than 2060114 is smaller than 2060215 is smaller than 2060316 is smaller than 2060417 is smaller than 2060518 is smaller than 2060619 is smaller than 2060720 equals 2060821 is greater than 2060922 is greater than 2061023 is greater than 2061124 is greater than 2061225 is greater than 2061326 is greater than 2061427 is greater than 2061528 is greater than 2061629 is greater than 2061730 is greater than 2061831 is greater than 2061932 is greater than 2062033 is greater than 2062134 is greater than 2062235 is greater than 2062336 is greater than 2062437 is greater than 2062538 is greater than 2062639 is greater than 20627*******************628*** Nested WHILEs ***629Each array variable should be equal to the sum of its indices:630${test00}[0] = 0631${test00}[1] = 1632${test00}[2] = 2633${test01}[0] = 1634${test01}[1] = 2635${test01}[2] = 3636${test02}[0] = 2637${test02}[1] = 3638${test02}[2] = 4639${test10}[0] = 1640${test10}[1] = 2641${test10}[2] = 3642${test11}[0] = 2643${test11}[1] = 3644${test11}[2] = 4645${test12}[0] = 3646${test12}[1] = 4647${test12}[2] = 5648${test20}[0] = 2649${test20}[1] = 3650${test20}[2] = 4651${test21}[0] = 3652${test21}[1] = 4653${test21}[2] = 5654${test22}[0] = 4655${test22}[1] = 5656${test22}[2] = 6657*********************658*** hash test... ***659commented out...660**************************661*** Hash resizing test ***662ba663baa664baaa665baaaa666baaaaa667baaaaaa668baaaaaaa669baaaaaaaa670baaaaaaaaa671baaaaaaaaaa672ba67310674baa6759676baaa6778678baaaa6797680baaaaa6816682baaaaaa6835684baaaaaaa6854686baaaaaaaa6873688baaaaaaaaa6892690baaaaaaaaaa6911692**************************693*** break/continue test ***694$i should go from 0 to 2695$j should go from 3 to 4, and $q should go from 3 to 4696 $j=3697 $q=3698 $q=4699 $j=4700 $q=3701 $q=4702$j should go from 0 to 2703 $j=0704 $j=1705 $j=2706$k should go from 0 to 2707 $k=0708 $k=1709 $k=2710$i=0711$j should go from 3 to 4, and $q should go from 3 to 4712 $j=3713 $q=3714 $q=4715 $j=4716 $q=3717 $q=4718$j should go from 0 to 2719 $j=0720 $j=1721 $j=2722$k should go from 0 to 2723 $k=0724 $k=1725 $k=2726$i=1727$j should go from 3 to 4, and $q should go from 3 to 4728 $j=3729 $q=3730 $q=4731 $j=4732 $q=3733 $q=4734$j should go from 0 to 2735 $j=0736 $j=1737 $j=2738$k should go from 0 to 2739 $k=0740 $k=1741 $k=2742$i=2743***********************744*** Nested file include test ***745<html>746This is Finish.phtml. This file is supposed to be included747from regression_test.phtml. This is normal HTML.748and this is PHP code, 2+2=4749</html>750********************************751Tests completed.752<html>753<head>754*** Testing assignments and variable aliasing: ***755This should read "blah": blah756This should read "this is nifty": this is nifty757*************************************************758*** Testing integer operators ***759Correct result - 8: 8760Correct result - 8: 8761Correct result - 2: 2762Correct result - -2: -2763Correct result - 15: 15764Correct result - 15: 15765Correct result - 2: 2766Correct result - 3: 3767*********************************768*** Testing real operators ***769Correct result - 8: 8770Correct result - 8: 8771Correct result - 2: 2772Correct result - -2: -2773Correct result - 15: 15774Correct result - 15: 15775Correct result - 2: 2776Correct result - 3: 3777*********************************778*** Testing if/elseif/else control ***779This works780this_still_works781should_print782*** Seriously nested if's test ***783** spelling correction by kluzz **784Only two lines of text should follow:785this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0786this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=47873 loop iterations should follow:7882 47893 47904 4791**********************************792*** C-style else-if's ***793This should be displayed794*************************795*** WHILE tests ***7960 is smaller than 207971 is smaller than 207982 is smaller than 207993 is smaller than 208004 is smaller than 208015 is smaller than 208026 is smaller than 208037 is smaller than 208048 is smaller than 208059 is smaller than 2080610 is smaller than 2080711 is smaller than 2080812 is smaller than 2080913 is smaller than 2081014 is smaller than 2081115 is smaller than 2081216 is smaller than 2081317 is smaller than 2081418 is smaller than 2081519 is smaller than 2081620 equals 2081721 is greater than 2081822 is greater than 2081923 is greater than 2082024 is greater than 2082125 is greater than 2082226 is greater than 2082327 is greater than 2082428 is greater than 2082529 is greater than 2082630 is greater than 2082731 is greater than 2082832 is greater than 2082933 is greater than 2083034 is greater than 2083135 is greater than 2083236 is greater than 2083337 is greater than 2083438 is greater than 2083539 is greater than 20836*******************837*** Nested WHILEs ***838Each array variable should be equal to the sum of its indices:839${test00}[0] = 0840${test00}[1] = 1841${test00}[2] = 2842${test01}[0] = 1843${test01}[1] = 2844${test01}[2] = 3845${test02}[0] = 2846${test02}[1] = 3847${test02}[2] = 4848${test10}[0] = 1849${test10}[1] = 2850${test10}[2] = 3851${test11}[0] = 2852${test11}[1] = 3853${test11}[2] = 4854${test12}[0] = 3855${test12}[1] = 4856${test12}[2] = 5857${test20}[0] = 2858${test20}[1] = 3859${test20}[2] = 4860${test21}[0] = 3861${test21}[1] = 4862${test21}[2] = 5863${test22}[0] = 4864${test22}[1] = 5865${test22}[2] = 6866*********************867*** hash test... ***868commented out...869**************************870*** Hash resizing test ***871ba872baa873baaa874baaaa875baaaaa876baaaaaa877baaaaaaa878baaaaaaaa879baaaaaaaaa880baaaaaaaaaa881ba88210883baa8849885baaa8868887baaaa8887889baaaaa8906891baaaaaa8925893baaaaaaa8944895baaaaaaaa8963897baaaaaaaaa8982899baaaaaaaaaa9001901**************************902*** break/continue test ***903$i should go from 0 to 2904$j should go from 3 to 4, and $q should go from 3 to 4905 $j=3906 $q=3907 $q=4908 $j=4909 $q=3910 $q=4911$j should go from 0 to 2912 $j=0913 $j=1914 $j=2915$k should go from 0 to 2916 $k=0917 $k=1918 $k=2919$i=0920$j should go from 3 to 4, and $q should go from 3 to 4921 $j=3922 $q=3923 $q=4924 $j=4925 $q=3926 $q=4927$j should go from 0 to 2928 $j=0929 $j=1930 $j=2931$k should go from 0 to 2932 $k=0933 $k=1934 $k=2935$i=1936$j should go from 3 to 4, and $q should go from 3 to 4937 $j=3938 $q=3939 $q=4940 $j=4941 $q=3942 $q=4943$j should go from 0 to 2944 $j=0945 $j=1946 $j=2947$k should go from 0 to 2948 $k=0949 $k=1950 $k=2951$i=2952***********************953*** Nested file include test ***954<html>955This is Finish.phtml. This file is supposed to be included956from regression_test.phtml. This is normal HTML.957and this is PHP code, 2+2=4958</html>959********************************960Tests completed.961<html>962<head>963*** Testing assignments and variable aliasing: ***964This should read "blah": blah965This should read "this is nifty": this is nifty966*************************************************967*** Testing integer operators ***968Correct result - 8: 8969Correct result - 8: 8970Correct result - 2: 2971Correct result - -2: -2972Correct result - 15: 15973Correct result - 15: 15974Correct result - 2: 2975Correct result - 3: 3976*********************************977*** Testing real operators ***978Correct result - 8: 8979Correct result - 8: 8980Correct result - 2: 2981Correct result - -2: -2982Correct result - 15: 15983Correct result - 15: 15984Correct result - 2: 2985Correct result - 3: 3986*********************************987*** Testing if/elseif/else control ***988This works989this_still_works990should_print991*** Seriously nested if's test ***992** spelling correction by kluzz **993Only two lines of text should follow:994this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=0995this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=49963 loop iterations should follow:9972 49983 49994 41000**********************************1001*** C-style else-if's ***1002This should be displayed1003*************************1004*** WHILE tests ***10050 is smaller than 2010061 is smaller than 2010072 is smaller than 2010083 is smaller than 2010094 is smaller than 2010105 is smaller than 2010116 is smaller than 2010127 is smaller than 2010138 is smaller than 2010149 is smaller than 20101510 is smaller than 20101611 is smaller than 20101712 is smaller than 20101813 is smaller than 20101914 is smaller than 20102015 is smaller than 20102116 is smaller than 20102217 is smaller than 20102318 is smaller than 20102419 is smaller than 20102520 equals 20102621 is greater than 20102722 is greater than 20102823 is greater than 20102924 is greater than 20103025 is greater than 20103126 is greater than 20103227 is greater than 20103328 is greater than 20103429 is greater than 20103530 is greater than 20103631 is greater than 20103732 is greater than 20103833 is greater than 20103934 is greater than 20104035 is greater than 20104136 is greater than 20104237 is greater than 20104338 is greater than 20104439 is greater than 201045*******************1046*** Nested WHILEs ***1047Each array variable should be equal to the sum of its indices:1048${test00}[0] = 01049${test00}[1] = 11050${test00}[2] = 21051${test01}[0] = 11052${test01}[1] = 21053${test01}[2] = 31054${test02}[0] = 21055${test02}[1] = 31056${test02}[2] = 41057${test10}[0] = 11058${test10}[1] = 21059${test10}[2] = 31060${test11}[0] = 21061${test11}[1] = 31062${test11}[2] = 41063${test12}[0] = 31064${test12}[1] = 41065${test12}[2] = 51066${test20}[0] = 21067${test20}[1] = 31068${test20}[2] = 41069${test21}[0] = 31070${test21}[1] = 41071${test21}[2] = 51072${test22}[0] = 41073${test22}[1] = 51074${test22}[2] = 61075*********************1076*** hash test... ***1077commented out...1078**************************1079*** Hash resizing test ***1080ba1081baa1082baaa1083baaaa1084baaaaa1085baaaaaa1086baaaaaaa1087baaaaaaaa1088baaaaaaaaa1089baaaaaaaaaa1090ba1091101092baa109391094baaa109581096baaaa109771098baaaaa109961100baaaaaa110151102baaaaaaa110341104baaaaaaaa110531106baaaaaaaaa110721108baaaaaaaaaa110911110**************************1111*** break/continue test ***1112$i should go from 0 to 21113$j should go from 3 to 4, and $q should go from 3 to 41114 $j=31115 $q=31116 $q=41117 $j=41118 $q=31119 $q=41120$j should go from 0 to 21121 $j=01122 $j=11123 $j=21124$k should go from 0 to 21125 $k=01126 $k=11127 $k=21128$i=01129$j should go from 3 to 4, and $q should go from 3 to 41130 $j=31131 $q=31132 $q=41133 $j=41134 $q=31135 $q=41136$j should go from 0 to 21137 $j=01138 $j=11139 $j=21140$k should go from 0 to 21141 $k=01142 $k=11143 $k=21144$i=11145$j should go from 3 to 4, and $q should go from 3 to 41146 $j=31147 $q=31148 $q=41149 $j=41150 $q=31151 $q=41152$j should go from 0 to 21153 $j=01154 $j=11155 $j=21156$k should go from 0 to 21157 $k=01158 $k=11159 $k=21160$i=21161***********************1162*** Nested file include test ***1163<html>1164This is Finish.phtml. This file is supposed to be included1165from regression_test.phtml. This is normal HTML.1166and this is PHP code, 2+2=41167</html>1168********************************1169Tests completed.1170<html>1171<head>1172*** Testing assignments and variable aliasing: ***1173This should read "blah": blah1174This should read "this is nifty": this is nifty1175*************************************************1176*** Testing integer operators ***1177Correct result - 8: 81178Correct result - 8: 81179Correct result - 2: 21180Correct result - -2: -21181Correct result - 15: 151182Correct result - 15: 151183Correct result - 2: 21184Correct result - 3: 31185*********************************1186*** Testing real operators ***1187Correct result - 8: 81188Correct result - 8: 81189Correct result - 2: 21190Correct result - -2: -21191Correct result - 15: 151192Correct result - 15: 151193Correct result - 2: 21194Correct result - 3: 31195*********************************1196*** Testing if/elseif/else control ***1197This works1198this_still_works1199should_print1200*** Seriously nested if's test ***1201** spelling correction by kluzz **1202Only two lines of text should follow:1203this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=01204this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=412053 loop iterations should follow:12062 412073 412084 41209**********************************1210*** C-style else-if's ***1211This should be displayed1212*************************1213*** WHILE tests ***12140 is smaller than 2012151 is smaller than 2012162 is smaller than 2012173 is smaller than 2012184 is smaller than 2012195 is smaller than 2012206 is smaller than 2012217 is smaller than 2012228 is smaller than 2012239 is smaller than 20122410 is smaller than 20122511 is smaller than 20122612 is smaller than 20122713 is smaller than 20122814 is smaller than 20122915 is smaller than 20123016 is smaller than 20123117 is smaller than 20123218 is smaller than 20123319 is smaller than 20123420 equals 20123521 is greater than 20123622 is greater than 20123723 is greater than 20123824 is greater than 20123925 is greater than 20124026 is greater than 20124127 is greater than 20124228 is greater than 20124329 is greater than 20124430 is greater than 20124531 is greater than 20124632 is greater than 20124733 is greater than 20124834 is greater than 20124935 is greater than 20125036 is greater than 20125137 is greater than 20125238 is greater than 20125339 is greater than 201254*******************1255*** Nested WHILEs ***1256Each array variable should be equal to the sum of its indices:1257${test00}[0] = 01258${test00}[1] = 11259${test00}[2] = 21260${test01}[0] = 11261${test01}[1] = 21262${test01}[2] = 31263${test02}[0] = 21264${test02}[1] = 31265${test02}[2] = 41266${test10}[0] = 11267${test10}[1] = 21268${test10}[2] = 31269${test11}[0] = 21270${test11}[1] = 31271${test11}[2] = 41272${test12}[0] = 31273${test12}[1] = 41274${test12}[2] = 51275${test20}[0] = 21276${test20}[1] = 31277${test20}[2] = 41278${test21}[0] = 31279${test21}[1] = 41280${test21}[2] = 51281${test22}[0] = 41282${test22}[1] = 51283${test22}[2] = 61284*********************1285*** hash test... ***1286commented out...1287**************************1288*** Hash resizing test ***1289ba1290baa1291baaa1292baaaa1293baaaaa1294baaaaaa1295baaaaaaa1296baaaaaaaa1297baaaaaaaaa1298baaaaaaaaaa1299ba1300101301baa130291303baaa130481305baaaa130671307baaaaa130861309baaaaaa131051311baaaaaaa131241313baaaaaaaa131431315baaaaaaaaa131621317baaaaaaaaaa131811319**************************1320*** break/continue test ***1321$i should go from 0 to 21322$j should go from 3 to 4, and $q should go from 3 to 41323 $j=31324 $q=31325 $q=41326 $j=41327 $q=31328 $q=41329$j should go from 0 to 21330 $j=01331 $j=11332 $j=21333$k should go from 0 to 21334 $k=01335 $k=11336 $k=21337$i=01338$j should go from 3 to 4, and $q should go from 3 to 41339 $j=31340 $q=31341 $q=41342 $j=41343 $q=31344 $q=41345$j should go from 0 to 21346 $j=01347 $j=11348 $j=21349$k should go from 0 to 21350 $k=01351 $k=11352 $k=21353$i=11354$j should go from 3 to 4, and $q should go from 3 to 41355 $j=31356 $q=31357 $q=41358 $j=41359 $q=31360 $q=41361$j should go from 0 to 21362 $j=01363 $j=11364 $j=21365$k should go from 0 to 21366 $k=01367 $k=11368 $k=21369$i=21370***********************1371*** Nested file include test ***1372<html>1373This is Finish.phtml. This file is supposed to be included1374from regression_test.phtml. This is normal HTML.1375and this is PHP code, 2+2=41376</html>1377********************************1378Tests completed.1379<html>1380<head>1381*** Testing assignments and variable aliasing: ***1382This should read "blah": blah1383This should read "this is nifty": this is nifty1384*************************************************1385*** Testing integer operators ***1386Correct result - 8: 81387Correct result - 8: 81388Correct result - 2: 21389Correct result - -2: -21390Correct result - 15: 151391Correct result - 15: 151392Correct result - 2: 21393Correct result - 3: 31394*********************************1395*** Testing real operators ***1396Correct result - 8: 81397Correct result - 8: 81398Correct result - 2: 21399Correct result - -2: -21400Correct result - 15: 151401Correct result - 15: 151402Correct result - 2: 21403Correct result - 3: 31404*********************************1405*** Testing if/elseif/else control ***1406This works1407this_still_works1408should_print1409*** Seriously nested if's test ***1410** spelling correction by kluzz **1411Only two lines of text should follow:1412this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=01413this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=414143 loop iterations should follow:14152 414163 414174 41418**********************************1419*** C-style else-if's ***1420This should be displayed1421*************************1422*** WHILE tests ***14230 is smaller than 2014241 is smaller than 2014252 is smaller than 2014263 is smaller than 2014274 is smaller than 2014285 is smaller than 2014296 is smaller than 2014307 is smaller than 2014318 is smaller than 2014329 is smaller than 20143310 is smaller than 20143411 is smaller than 20143512 is smaller than 20143613 is smaller than 20143714 is smaller than 20143815 is smaller than 20143916 is smaller than 20144017 is smaller than 20144118 is smaller than 20144219 is smaller than 20144320 equals 20144421 is greater than 20144522 is greater than 20144623 is greater than 20144724 is greater than 20144825 is greater than 20144926 is greater than 20145027 is greater than 20145128 is greater than 20145229 is greater than 20145330 is greater than 20145431 is greater than 20145532 is greater than 20145633 is greater than 20145734 is greater than 20145835 is greater than 20145936 is greater than 20146037 is greater than 20146138 is greater than 20146239 is greater than 201463*******************1464*** Nested WHILEs ***1465Each array variable should be equal to the sum of its indices:1466${test00}[0] = 01467${test00}[1] = 11468${test00}[2] = 21469${test01}[0] = 11470${test01}[1] = 21471${test01}[2] = 31472${test02}[0] = 21473${test02}[1] = 31474${test02}[2] = 41475${test10}[0] = 11476${test10}[1] = 21477${test10}[2] = 31478${test11}[0] = 21479${test11}[1] = 31480${test11}[2] = 41481${test12}[0] = 31482${test12}[1] = 41483${test12}[2] = 51484${test20}[0] = 21485${test20}[1] = 31486${test20}[2] = 41487${test21}[0] = 31488${test21}[1] = 41489${test21}[2] = 51490${test22}[0] = 41491${test22}[1] = 51492${test22}[2] = 61493*********************1494*** hash test... ***1495commented out...1496**************************1497*** Hash resizing test ***1498ba1499baa1500baaa1501baaaa1502baaaaa1503baaaaaa1504baaaaaaa1505baaaaaaaa1506baaaaaaaaa1507baaaaaaaaaa1508ba1509101510baa151191512baaa151381514baaaa151571516baaaaa151761518baaaaaa151951520baaaaaaa152141522baaaaaaaa152331524baaaaaaaaa152521526baaaaaaaaaa152711528**************************1529*** break/continue test ***1530$i should go from 0 to 21531$j should go from 3 to 4, and $q should go from 3 to 41532 $j=31533 $q=31534 $q=41535 $j=41536 $q=31537 $q=41538$j should go from 0 to 21539 $j=01540 $j=11541 $j=21542$k should go from 0 to 21543 $k=01544 $k=11545 $k=21546$i=01547$j should go from 3 to 4, and $q should go from 3 to 41548 $j=31549 $q=31550 $q=41551 $j=41552 $q=31553 $q=41554$j should go from 0 to 21555 $j=01556 $j=11557 $j=21558$k should go from 0 to 21559 $k=01560 $k=11561 $k=21562$i=11563$j should go from 3 to 4, and $q should go from 3 to 41564 $j=31565 $q=31566 $q=41567 $j=41568 $q=31569 $q=41570$j should go from 0 to 21571 $j=01572 $j=11573 $j=21574$k should go from 0 to 21575 $k=01576 $k=11577 $k=21578$i=21579***********************1580*** Nested file include test ***1581<html>1582This is Finish.phtml. This file is supposed to be included1583from regression_test.phtml. This is normal HTML.1584and this is PHP code, 2+2=41585</html>1586********************************1587Tests completed.1588<html>1589<head>1590*** Testing assignments and variable aliasing: ***1591This should read "blah": blah1592This should read "this is nifty": this is nifty1593*************************************************1594*** Testing integer operators ***1595Correct result - 8: 81596Correct result - 8: 81597Correct result - 2: 21598Correct result - -2: -21599Correct result - 15: 151600Correct result - 15: 151601Correct result - 2: 21602Correct result - 3: 31603*********************************1604*** Testing real operators ***1605Correct result - 8: 81606Correct result - 8: 81607Correct result - 2: 21608Correct result - -2: -21609Correct result - 15: 151610Correct result - 15: 151611Correct result - 2: 21612Correct result - 3: 31613*********************************1614*** Testing if/elseif/else control ***1615This works1616this_still_works1617should_print1618*** Seriously nested if's test ***1619** spelling correction by kluzz **1620Only two lines of text should follow:1621this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=01622this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=416233 loop iterations should follow:16242 416253 416264 41627**********************************1628*** C-style else-if's ***1629This should be displayed1630*************************1631*** WHILE tests ***16320 is smaller than 2016331 is smaller than 2016342 is smaller than 2016353 is smaller than 2016364 is smaller than 2016375 is smaller than 2016386 is smaller than 2016397 is smaller than 2016408 is smaller than 2016419 is smaller than 20164210 is smaller than 20164311 is smaller than 20164412 is smaller than 20164513 is smaller than 20164614 is smaller than 20164715 is smaller than 20164816 is smaller than 20164917 is smaller than 20165018 is smaller than 20165119 is smaller than 20165220 equals 20165321 is greater than 20165422 is greater than 20165523 is greater than 20165624 is greater than 20165725 is greater than 20165826 is greater than 20165927 is greater than 20166028 is greater than 20166129 is greater than 20166230 is greater than 20166331 is greater than 20166432 is greater than 20166533 is greater than 20166634 is greater than 20166735 is greater than 20166836 is greater than 20166937 is greater than 20167038 is greater than 20167139 is greater than 201672*******************1673*** Nested WHILEs ***1674Each array variable should be equal to the sum of its indices:1675${test00}[0] = 01676${test00}[1] = 11677${test00}[2] = 21678${test01}[0] = 11679${test01}[1] = 21680${test01}[2] = 31681${test02}[0] = 21682${test02}[1] = 31683${test02}[2] = 41684${test10}[0] = 11685${test10}[1] = 21686${test10}[2] = 31687${test11}[0] = 21688${test11}[1] = 31689${test11}[2] = 41690${test12}[0] = 31691${test12}[1] = 41692${test12}[2] = 51693${test20}[0] = 21694${test20}[1] = 31695${test20}[2] = 41696${test21}[0] = 31697${test21}[1] = 41698${test21}[2] = 51699${test22}[0] = 41700${test22}[1] = 51701${test22}[2] = 61702*********************1703*** hash test... ***1704commented out...1705**************************1706*** Hash resizing test ***1707ba1708baa1709baaa1710baaaa1711baaaaa1712baaaaaa1713baaaaaaa1714baaaaaaaa1715baaaaaaaaa1716baaaaaaaaaa1717ba1718101719baa172091721baaa172281723baaaa172471725baaaaa172661727baaaaaa172851729baaaaaaa173041731baaaaaaaa173231733baaaaaaaaa173421735baaaaaaaaaa173611737**************************1738*** break/continue test ***1739$i should go from 0 to 21740$j should go from 3 to 4, and $q should go from 3 to 41741 $j=31742 $q=31743 $q=41744 $j=41745 $q=31746 $q=41747$j should go from 0 to 21748 $j=01749 $j=11750 $j=21751$k should go from 0 to 21752 $k=01753 $k=11754 $k=21755$i=01756$j should go from 3 to 4, and $q should go from 3 to 41757 $j=31758 $q=31759 $q=41760 $j=41761 $q=31762 $q=41763$j should go from 0 to 21764 $j=01765 $j=11766 $j=21767$k should go from 0 to 21768 $k=01769 $k=11770 $k=21771$i=11772$j should go from 3 to 4, and $q should go from 3 to 41773 $j=31774 $q=31775 $q=41776 $j=41777 $q=31778 $q=41779$j should go from 0 to 21780 $j=01781 $j=11782 $j=21783$k should go from 0 to 21784 $k=01785 $k=11786 $k=21787$i=21788***********************1789*** Nested file include test ***1790<html>1791This is Finish.phtml. This file is supposed to be included1792from regression_test.phtml. This is normal HTML.1793and this is PHP code, 2+2=41794</html>1795********************************1796Tests completed.1797<html>1798<head>1799*** Testing assignments and variable aliasing: ***1800This should read "blah": blah1801This should read "this is nifty": this is nifty1802*************************************************1803*** Testing integer operators ***1804Correct result - 8: 81805Correct result - 8: 81806Correct result - 2: 21807Correct result - -2: -21808Correct result - 15: 151809Correct result - 15: 151810Correct result - 2: 21811Correct result - 3: 31812*********************************1813*** Testing real operators ***1814Correct result - 8: 81815Correct result - 8: 81816Correct result - 2: 21817Correct result - -2: -21818Correct result - 15: 151819Correct result - 15: 151820Correct result - 2: 21821Correct result - 3: 31822*********************************1823*** Testing if/elseif/else control ***1824This works1825this_still_works1826should_print1827*** Seriously nested if's test ***1828** spelling correction by kluzz **1829Only two lines of text should follow:1830this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=01831this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=418323 loop iterations should follow:18332 418343 418354 41836**********************************1837*** C-style else-if's ***1838This should be displayed1839*************************1840*** WHILE tests ***18410 is smaller than 2018421 is smaller than 2018432 is smaller than 2018443 is smaller than 2018454 is smaller than 2018465 is smaller than 2018476 is smaller than 2018487 is smaller than 2018498 is smaller than 2018509 is smaller than 20185110 is smaller than 20185211 is smaller than 20185312 is smaller than 20185413 is smaller than 20185514 is smaller than 20185615 is smaller than 20185716 is smaller than 20185817 is smaller than 20185918 is smaller than 20186019 is smaller than 20186120 equals 20186221 is greater than 20186322 is greater than 20186423 is greater than 20186524 is greater than 20186625 is greater than 20186726 is greater than 20186827 is greater than 20186928 is greater than 20187029 is greater than 20187130 is greater than 20187231 is greater than 20187332 is greater than 20187433 is greater than 20187534 is greater than 20187635 is greater than 20187736 is greater than 20187837 is greater than 20187938 is greater than 20188039 is greater than 201881*******************1882*** Nested WHILEs ***1883Each array variable should be equal to the sum of its indices:1884${test00}[0] = 01885${test00}[1] = 11886${test00}[2] = 21887${test01}[0] = 11888${test01}[1] = 21889${test01}[2] = 31890${test02}[0] = 21891${test02}[1] = 31892${test02}[2] = 41893${test10}[0] = 11894${test10}[1] = 21895${test10}[2] = 31896${test11}[0] = 21897${test11}[1] = 31898${test11}[2] = 41899${test12}[0] = 31900${test12}[1] = 41901${test12}[2] = 51902${test20}[0] = 21903${test20}[1] = 31904${test20}[2] = 41905${test21}[0] = 31906${test21}[1] = 41907${test21}[2] = 51908${test22}[0] = 41909${test22}[1] = 51910${test22}[2] = 61911*********************1912*** hash test... ***1913commented out...1914**************************1915*** Hash resizing test ***1916ba1917baa1918baaa1919baaaa1920baaaaa1921baaaaaa1922baaaaaaa1923baaaaaaaa1924baaaaaaaaa1925baaaaaaaaaa1926ba1927101928baa192991930baaa193181932baaaa193371934baaaaa193561936baaaaaa193751938baaaaaaa193941940baaaaaaaa194131942baaaaaaaaa194321944baaaaaaaaaa194511946**************************1947*** break/continue test ***1948$i should go from 0 to 21949$j should go from 3 to 4, and $q should go from 3 to 41950 $j=31951 $q=31952 $q=41953 $j=41954 $q=31955 $q=41956$j should go from 0 to 21957 $j=01958 $j=11959 $j=21960$k should go from 0 to 21961 $k=01962 $k=11963 $k=21964$i=01965$j should go from 3 to 4, and $q should go from 3 to 41966 $j=31967 $q=31968 $q=41969 $j=41970 $q=31971 $q=41972$j should go from 0 to 21973 $j=01974 $j=11975 $j=21976$k should go from 0 to 21977 $k=01978 $k=11979 $k=21980$i=11981$j should go from 3 to 4, and $q should go from 3 to 41982 $j=31983 $q=31984 $q=41985 $j=41986 $q=31987 $q=41988$j should go from 0 to 21989 $j=01990 $j=11991 $j=21992$k should go from 0 to 21993 $k=01994 $k=11995 $k=21996$i=21997***********************1998*** Nested file include test ***1999<html>2000This is Finish.phtml. This file is supposed to be included2001from regression_test.phtml. This is normal HTML.2002and this is PHP code, 2+2=42003</html>2004********************************2005Tests completed.2006<html>2007<head>2008*** Testing assignments and variable aliasing: ***2009This should read "blah": blah2010This should read "this is nifty": this is nifty2011*************************************************2012*** Testing integer operators ***2013Correct result - 8: 82014Correct result - 8: 82015Correct result - 2: 22016Correct result - -2: -22017Correct result - 15: 152018Correct result - 15: 152019Correct result - 2: 22020Correct result - 3: 32021*********************************2022*** Testing real operators ***2023Correct result - 8: 82024Correct result - 8: 82025Correct result - 2: 22026Correct result - -2: -22027Correct result - 15: 152028Correct result - 15: 152029Correct result - 2: 22030Correct result - 3: 32031*********************************2032*** Testing if/elseif/else control ***2033This works2034this_still_works2035should_print2036*** Seriously nested if's test ***2037** spelling correction by kluzz **2038Only two lines of text should follow:2039this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=02040this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=420413 loop iterations should follow:20422 420433 420444 42045**********************************2046*** C-style else-if's ***2047This should be displayed2048*************************2049*** WHILE tests ***20500 is smaller than 2020511 is smaller than 2020522 is smaller than 2020533 is smaller than 2020544 is smaller than 2020555 is smaller than 2020566 is smaller than 2020577 is smaller than 2020588 is smaller than 2020599 is smaller than 20206010 is smaller than 20206111 is smaller than 20206212 is smaller than 20206313 is smaller than 20206414 is smaller than 20206515 is smaller than 20206616 is smaller than 20206717 is smaller than 20206818 is smaller than 20206919 is smaller than 20207020 equals 20207121 is greater than 20207222 is greater than 20207323 is greater than 20207424 is greater than 20207525 is greater than 20207626 is greater than 20207727 is greater than 20207828 is greater than 20207929 is greater than 20208030 is greater than 20208131 is greater than 20208232 is greater than 20208333 is greater than 20208434 is greater than 20208535 is greater than 20208636 is greater than 20208737 is greater than 20208838 is greater than 20208939 is greater than 202090*******************2091*** Nested WHILEs ***2092Each array variable should be equal to the sum of its indices:2093${test00}[0] = 02094${test00}[1] = 12095${test00}[2] = 22096${test01}[0] = 12097${test01}[1] = 22098${test01}[2] = 32099${test02}[0] = 22100${test02}[1] = 32101${test02}[2] = 42102${test10}[0] = 12103${test10}[1] = 22104${test10}[2] = 32105${test11}[0] = 22106${test11}[1] = 32107${test11}[2] = 42108${test12}[0] = 32109${test12}[1] = 42110${test12}[2] = 52111${test20}[0] = 22112${test20}[1] = 32113${test20}[2] = 42114${test21}[0] = 32115${test21}[1] = 42116${test21}[2] = 52117${test22}[0] = 42118${test22}[1] = 52119${test22}[2] = 62120*********************2121*** hash test... ***2122commented out...2123**************************2124*** Hash resizing test ***2125ba2126baa2127baaa2128baaaa2129baaaaa2130baaaaaa2131baaaaaaa2132baaaaaaaa2133baaaaaaaaa2134baaaaaaaaaa2135ba2136102137baa213892139baaa214082141baaaa214272143baaaaa214462145baaaaaa214652147baaaaaaa214842149baaaaaaaa215032151baaaaaaaaa215222153baaaaaaaaaa215412155**************************2156*** break/continue test ***2157$i should go from 0 to 22158$j should go from 3 to 4, and $q should go from 3 to 42159 $j=32160 $q=32161 $q=42162 $j=42163 $q=32164 $q=42165$j should go from 0 to 22166 $j=02167 $j=12168 $j=22169$k should go from 0 to 22170 $k=02171 $k=12172 $k=22173$i=02174$j should go from 3 to 4, and $q should go from 3 to 42175 $j=32176 $q=32177 $q=42178 $j=42179 $q=32180 $q=42181$j should go from 0 to 22182 $j=02183 $j=12184 $j=22185$k should go from 0 to 22186 $k=02187 $k=12188 $k=22189$i=12190$j should go from 3 to 4, and $q should go from 3 to 42191 $j=32192 $q=32193 $q=42194 $j=42195 $q=32196 $q=42197$j should go from 0 to 22198 $j=02199 $j=12200 $j=22201$k should go from 0 to 22202 $k=02203 $k=12204 $k=22205$i=22206***********************2207*** Nested file include test ***2208<html>2209This is Finish.phtml. This file is supposed to be included2210from regression_test.phtml. This is normal HTML.2211and this is PHP code, 2+2=42212</html>2213********************************2214Tests completed.2215<html>2216<head>2217*** Testing assignments and variable aliasing: ***2218This should read "blah": blah2219This should read "this is nifty": this is nifty2220*************************************************2221*** Testing integer operators ***2222Correct result - 8: 82223Correct result - 8: 82224Correct result - 2: 22225Correct result - -2: -22226Correct result - 15: 152227Correct result - 15: 152228Correct result - 2: 22229Correct result - 3: 32230*********************************2231*** Testing real operators ***2232Correct result - 8: 82233Correct result - 8: 82234Correct result - 2: 22235Correct result - -2: -22236Correct result - 15: 152237Correct result - 15: 152238Correct result - 2: 22239Correct result - 3: 32240*********************************2241*** Testing if/elseif/else control ***2242This works2243this_still_works2244should_print2245*** Seriously nested if's test ***2246** spelling correction by kluzz **2247Only two lines of text should follow:2248this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=02249this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=422503 loop iterations should follow:22512 422523 422534 42254**********************************2255*** C-style else-if's ***2256This should be displayed2257*************************2258*** WHILE tests ***22590 is smaller than 2022601 is smaller than 2022612 is smaller than 2022623 is smaller than 2022634 is smaller than 2022645 is smaller than 2022656 is smaller than 2022667 is smaller than 2022678 is smaller than 2022689 is smaller than 20226910 is smaller than 20227011 is smaller than 20227112 is smaller than 20227213 is smaller than 20227314 is smaller than 20227415 is smaller than 20227516 is smaller than 20227617 is smaller than 20227718 is smaller than 20227819 is smaller than 20227920 equals 20228021 is greater than 20228122 is greater than 20228223 is greater than 20228324 is greater than 20228425 is greater than 20228526 is greater than 20228627 is greater than 20228728 is greater than 20228829 is greater than 20228930 is greater than 20229031 is greater than 20229132 is greater than 20229233 is greater than 20229334 is greater than 20229435 is greater than 20229536 is greater than 20229637 is greater than 20229738 is greater than 20229839 is greater than 202299*******************2300*** Nested WHILEs ***2301Each array variable should be equal to the sum of its indices:2302${test00}[0] = 02303${test00}[1] = 12304${test00}[2] = 22305${test01}[0] = 12306${test01}[1] = 22307${test01}[2] = 32308${test02}[0] = 22309${test02}[1] = 32310${test02}[2] = 42311${test10}[0] = 12312${test10}[1] = 22313${test10}[2] = 32314${test11}[0] = 22315${test11}[1] = 32316${test11}[2] = 42317${test12}[0] = 32318${test12}[1] = 42319${test12}[2] = 52320${test20}[0] = 22321${test20}[1] = 32322${test20}[2] = 42323${test21}[0] = 32324${test21}[1] = 42325${test21}[2] = 52326${test22}[0] = 42327${test22}[1] = 52328${test22}[2] = 62329*********************2330*** hash test... ***2331commented out...2332**************************2333*** Hash resizing test ***2334ba2335baa2336baaa2337baaaa2338baaaaa2339baaaaaa2340baaaaaaa2341baaaaaaaa2342baaaaaaaaa2343baaaaaaaaaa2344ba2345102346baa234792348baaa234982350baaaa235172352baaaaa235362354baaaaaa235552356baaaaaaa235742358baaaaaaaa235932360baaaaaaaaa236122362baaaaaaaaaa236312364**************************2365*** break/continue test ***2366$i should go from 0 to 22367$j should go from 3 to 4, and $q should go from 3 to 42368 $j=32369 $q=32370 $q=42371 $j=42372 $q=32373 $q=42374$j should go from 0 to 22375 $j=02376 $j=12377 $j=22378$k should go from 0 to 22379 $k=02380 $k=12381 $k=22382$i=02383$j should go from 3 to 4, and $q should go from 3 to 42384 $j=32385 $q=32386 $q=42387 $j=42388 $q=32389 $q=42390$j should go from 0 to 22391 $j=02392 $j=12393 $j=22394$k should go from 0 to 22395 $k=02396 $k=12397 $k=22398$i=12399$j should go from 3 to 4, and $q should go from 3 to 42400 $j=32401 $q=32402 $q=42403 $j=42404 $q=32405 $q=42406$j should go from 0 to 22407 $j=02408 $j=12409 $j=22410$k should go from 0 to 22411 $k=02412 $k=12413 $k=22414$i=22415***********************2416*** Nested file include test ***2417<html>2418This is Finish.phtml. This file is supposed to be included2419from regression_test.phtml. This is normal HTML.2420and this is PHP code, 2+2=42421</html>2422********************************2423Tests completed.2424<html>2425<head>2426*** Testing assignments and variable aliasing: ***2427This should read "blah": blah2428This should read "this is nifty": this is nifty2429*************************************************2430*** Testing integer operators ***2431Correct result - 8: 82432Correct result - 8: 82433Correct result - 2: 22434Correct result - -2: -22435Correct result - 15: 152436Correct result - 15: 152437Correct result - 2: 22438Correct result - 3: 32439*********************************2440*** Testing real operators ***2441Correct result - 8: 82442Correct result - 8: 82443Correct result - 2: 22444Correct result - -2: -22445Correct result - 15: 152446Correct result - 15: 152447Correct result - 2: 22448Correct result - 3: 32449*********************************2450*** Testing if/elseif/else control ***2451This works2452this_still_works2453should_print2454*** Seriously nested if's test ***2455** spelling correction by kluzz **2456Only two lines of text should follow:2457this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=02458this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=424593 loop iterations should follow:24602 424613 424624 42463**********************************2464*** C-style else-if's ***2465This should be displayed2466*************************2467*** WHILE tests ***24680 is smaller than 2024691 is smaller than 2024702 is smaller than 2024713 is smaller than 2024724 is smaller than 2024735 is smaller than 2024746 is smaller than 2024757 is smaller than 2024768 is smaller than 2024779 is smaller than 20247810 is smaller than 20247911 is smaller than 20248012 is smaller than 20248113 is smaller than 20248214 is smaller than 20248315 is smaller than 20248416 is smaller than 20248517 is smaller than 20248618 is smaller than 20248719 is smaller than 20248820 equals 20248921 is greater than 20249022 is greater than 20249123 is greater than 20249224 is greater than 20249325 is greater than 20249426 is greater than 20249527 is greater than 20249628 is greater than 20249729 is greater than 20249830 is greater than 20249931 is greater than 20250032 is greater than 20250133 is greater than 20250234 is greater than 20250335 is greater than 20250436 is greater than 20250537 is greater than 20250638 is greater than 20250739 is greater than 202508*******************2509*** Nested WHILEs ***2510Each array variable should be equal to the sum of its indices:2511${test00}[0] = 02512${test00}[1] = 12513${test00}[2] = 22514${test01}[0] = 12515${test01}[1] = 22516${test01}[2] = 32517${test02}[0] = 22518${test02}[1] = 32519${test02}[2] = 42520${test10}[0] = 12521${test10}[1] = 22522${test10}[2] = 32523${test11}[0] = 22524${test11}[1] = 32525${test11}[2] = 42526${test12}[0] = 32527${test12}[1] = 42528${test12}[2] = 52529${test20}[0] = 22530${test20}[1] = 32531${test20}[2] = 42532${test21}[0] = 32533${test21}[1] = 42534${test21}[2] = 52535${test22}[0] = 42536${test22}[1] = 52537${test22}[2] = 62538*********************2539*** hash test... ***2540commented out...2541**************************2542*** Hash resizing test ***2543ba2544baa2545baaa2546baaaa2547baaaaa2548baaaaaa2549baaaaaaa2550baaaaaaaa2551baaaaaaaaa2552baaaaaaaaaa2553ba2554102555baa255692557baaa255882559baaaa256072561baaaaa256262563baaaaaa256452565baaaaaaa256642567baaaaaaaa256832569baaaaaaaaa257022571baaaaaaaaaa257212573**************************2574*** break/continue test ***2575$i should go from 0 to 22576$j should go from 3 to 4, and $q should go from 3 to 42577 $j=32578 $q=32579 $q=42580 $j=42581 $q=32582 $q=42583$j should go from 0 to 22584 $j=02585 $j=12586 $j=22587$k should go from 0 to 22588 $k=02589 $k=12590 $k=22591$i=02592$j should go from 3 to 4, and $q should go from 3 to 42593 $j=32594 $q=32595 $q=42596 $j=42597 $q=32598 $q=42599$j should go from 0 to 22600 $j=02601 $j=12602 $j=22603$k should go from 0 to 22604 $k=02605 $k=12606 $k=22607$i=12608$j should go from 3 to 4, and $q should go from 3 to 42609 $j=32610 $q=32611 $q=42612 $j=42613 $q=32614 $q=42615$j should go from 0 to 22616 $j=02617 $j=12618 $j=22619$k should go from 0 to 22620 $k=02621 $k=12622 $k=22623$i=22624***********************2625*** Nested file include test ***2626<html>2627This is Finish.phtml. This file is supposed to be included2628from regression_test.phtml. This is normal HTML.2629and this is PHP code, 2+2=42630</html>2631********************************2632Tests completed.2633<html>2634<head>2635*** Testing assignments and variable aliasing: ***2636This should read "blah": blah2637This should read "this is nifty": this is nifty2638*************************************************2639*** Testing integer operators ***2640Correct result - 8: 82641Correct result - 8: 82642Correct result - 2: 22643Correct result - -2: -22644Correct result - 15: 152645Correct result - 15: 152646Correct result - 2: 22647Correct result - 3: 32648*********************************2649*** Testing real operators ***2650Correct result - 8: 82651Correct result - 8: 82652Correct result - 2: 22653Correct result - -2: -22654Correct result - 15: 152655Correct result - 15: 152656Correct result - 2: 22657Correct result - 3: 32658*********************************2659*** Testing if/elseif/else control ***2660This works2661this_still_works2662should_print2663*** Seriously nested if's test ***2664** spelling correction by kluzz **2665Only two lines of text should follow:2666this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=02667this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=426683 loop iterations should follow:26692 426703 426714 42672**********************************2673*** C-style else-if's ***2674This should be displayed2675*************************2676*** WHILE tests ***26770 is smaller than 2026781 is smaller than 2026792 is smaller than 2026803 is smaller than 2026814 is smaller than 2026825 is smaller than 2026836 is smaller than 2026847 is smaller than 2026858 is smaller than 2026869 is smaller than 20268710 is smaller than 20268811 is smaller than 20268912 is smaller than 20269013 is smaller than 20269114 is smaller than 20269215 is smaller than 20269316 is smaller than 20269417 is smaller than 20269518 is smaller than 20269619 is smaller than 20269720 equals 20269821 is greater than 20269922 is greater than 20270023 is greater than 20270124 is greater than 20270225 is greater than 20270326 is greater than 20270427 is greater than 20270528 is greater than 20270629 is greater than 20270730 is greater than 20270831 is greater than 20270932 is greater than 20271033 is greater than 20271134 is greater than 20271235 is greater than 20271336 is greater than 20271437 is greater than 20271538 is greater than 20271639 is greater than 202717*******************2718*** Nested WHILEs ***2719Each array variable should be equal to the sum of its indices:2720${test00}[0] = 02721${test00}[1] = 12722${test00}[2] = 22723${test01}[0] = 12724${test01}[1] = 22725${test01}[2] = 32726${test02}[0] = 22727${test02}[1] = 32728${test02}[2] = 42729${test10}[0] = 12730${test10}[1] = 22731${test10}[2] = 32732${test11}[0] = 22733${test11}[1] = 32734${test11}[2] = 42735${test12}[0] = 32736${test12}[1] = 42737${test12}[2] = 52738${test20}[0] = 22739${test20}[1] = 32740${test20}[2] = 42741${test21}[0] = 32742${test21}[1] = 42743${test21}[2] = 52744${test22}[0] = 42745${test22}[1] = 52746${test22}[2] = 62747*********************2748*** hash test... ***2749commented out...2750**************************2751*** Hash resizing test ***2752ba2753baa2754baaa2755baaaa2756baaaaa2757baaaaaa2758baaaaaaa2759baaaaaaaa2760baaaaaaaaa2761baaaaaaaaaa2762ba2763102764baa276592766baaa276782768baaaa276972770baaaaa277162772baaaaaa277352774baaaaaaa277542776baaaaaaaa277732778baaaaaaaaa277922780baaaaaaaaaa278112782**************************2783*** break/continue test ***2784$i should go from 0 to 22785$j should go from 3 to 4, and $q should go from 3 to 42786 $j=32787 $q=32788 $q=42789 $j=42790 $q=32791 $q=42792$j should go from 0 to 22793 $j=02794 $j=12795 $j=22796$k should go from 0 to 22797 $k=02798 $k=12799 $k=22800$i=02801$j should go from 3 to 4, and $q should go from 3 to 42802 $j=32803 $q=32804 $q=42805 $j=42806 $q=32807 $q=42808$j should go from 0 to 22809 $j=02810 $j=12811 $j=22812$k should go from 0 to 22813 $k=02814 $k=12815 $k=22816$i=12817$j should go from 3 to 4, and $q should go from 3 to 42818 $j=32819 $q=32820 $q=42821 $j=42822 $q=32823 $q=42824$j should go from 0 to 22825 $j=02826 $j=12827 $j=22828$k should go from 0 to 22829 $k=02830 $k=12831 $k=22832$i=22833***********************2834*** Nested file include test ***2835<html>2836This is Finish.phtml. This file is supposed to be included2837from regression_test.phtml. This is normal HTML.2838and this is PHP code, 2+2=42839</html>2840********************************2841Tests completed.2842<html>2843<head>2844*** Testing assignments and variable aliasing: ***2845This should read "blah": blah2846This should read "this is nifty": this is nifty2847*************************************************2848*** Testing integer operators ***2849Correct result - 8: 82850Correct result - 8: 82851Correct result - 2: 22852Correct result - -2: -22853Correct result - 15: 152854Correct result - 15: 152855Correct result - 2: 22856Correct result - 3: 32857*********************************2858*** Testing real operators ***2859Correct result - 8: 82860Correct result - 8: 82861Correct result - 2: 22862Correct result - -2: -22863Correct result - 15: 152864Correct result - 15: 152865Correct result - 2: 22866Correct result - 3: 32867*********************************2868*** Testing if/elseif/else control ***2869This works2870this_still_works2871should_print2872*** Seriously nested if's test ***2873** spelling correction by kluzz **2874Only two lines of text should follow:2875this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=02876this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=428773 loop iterations should follow:28782 428793 428804 42881**********************************2882*** C-style else-if's ***2883This should be displayed2884*************************2885*** WHILE tests ***28860 is smaller than 2028871 is smaller than 2028882 is smaller than 2028893 is smaller than 2028904 is smaller than 2028915 is smaller than 2028926 is smaller than 2028937 is smaller than 2028948 is smaller than 2028959 is smaller than 20289610 is smaller than 20289711 is smaller than 20289812 is smaller than 20289913 is smaller than 20290014 is smaller than 20290115 is smaller than 20290216 is smaller than 20290317 is smaller than 20290418 is smaller than 20290519 is smaller than 20290620 equals 20290721 is greater than 20290822 is greater than 20290923 is greater than 20291024 is greater than 20291125 is greater than 20291226 is greater than 20291327 is greater than 20291428 is greater than 20291529 is greater than 20291630 is greater than 20291731 is greater than 20291832 is greater than 20291933 is greater than 20292034 is greater than 20292135 is greater than 20292236 is greater than 20292337 is greater than 20292438 is greater than 20292539 is greater than 202926*******************2927*** Nested WHILEs ***2928Each array variable should be equal to the sum of its indices:2929${test00}[0] = 02930${test00}[1] = 12931${test00}[2] = 22932${test01}[0] = 12933${test01}[1] = 22934${test01}[2] = 32935${test02}[0] = 22936${test02}[1] = 32937${test02}[2] = 42938${test10}[0] = 12939${test10}[1] = 22940${test10}[2] = 32941${test11}[0] = 22942${test11}[1] = 32943${test11}[2] = 42944${test12}[0] = 32945${test12}[1] = 42946${test12}[2] = 52947${test20}[0] = 22948${test20}[1] = 32949${test20}[2] = 42950${test21}[0] = 32951${test21}[1] = 42952${test21}[2] = 52953${test22}[0] = 42954${test22}[1] = 52955${test22}[2] = 62956*********************2957*** hash test... ***2958commented out...2959**************************2960*** Hash resizing test ***2961ba2962baa2963baaa2964baaaa2965baaaaa2966baaaaaa2967baaaaaaa2968baaaaaaaa2969baaaaaaaaa2970baaaaaaaaaa2971ba2972102973baa297492975baaa297682977baaaa297872979baaaaa298062981baaaaaa298252983baaaaaaa298442985baaaaaaaa298632987baaaaaaaaa298822989baaaaaaaaaa299012991**************************2992*** break/continue test ***2993$i should go from 0 to 22994$j should go from 3 to 4, and $q should go from 3 to 42995 $j=32996 $q=32997 $q=42998 $j=42999 $q=33000 $q=43001$j should go from 0 to 23002 $j=03003 $j=13004 $j=23005$k should go from 0 to 23006 $k=03007 $k=13008 $k=23009$i=03010$j should go from 3 to 4, and $q should go from 3 to 43011 $j=33012 $q=33013 $q=43014 $j=43015 $q=33016 $q=43017$j should go from 0 to 23018 $j=03019 $j=13020 $j=23021$k should go from 0 to 23022 $k=03023 $k=13024 $k=23025$i=13026$j should go from 3 to 4, and $q should go from 3 to 43027 $j=33028 $q=33029 $q=43030 $j=43031 $q=33032 $q=43033$j should go from 0 to 23034 $j=03035 $j=13036 $j=23037$k should go from 0 to 23038 $k=03039 $k=13040 $k=23041$i=23042***********************3043*** Nested file include test ***3044<html>3045This is Finish.phtml. This file is supposed to be included3046from regression_test.phtml. This is normal HTML.3047and this is PHP code, 2+2=43048</html>3049********************************3050Tests completed.3051<html>3052<head>3053*** Testing assignments and variable aliasing: ***3054This should read "blah": blah3055This should read "this is nifty": this is nifty3056*************************************************3057*** Testing integer operators ***3058Correct result - 8: 83059Correct result - 8: 83060Correct result - 2: 23061Correct result - -2: -23062Correct result - 15: 153063Correct result - 15: 153064Correct result - 2: 23065Correct result - 3: 33066*********************************3067*** Testing real operators ***3068Correct result - 8: 83069Correct result - 8: 83070Correct result - 2: 23071Correct result - -2: -23072Correct result - 15: 153073Correct result - 15: 153074Correct result - 2: 23075Correct result - 3: 33076*********************************3077*** Testing if/elseif/else control ***3078This works3079this_still_works3080should_print3081*** Seriously nested if's test ***3082** spelling correction by kluzz **3083Only two lines of text should follow:3084this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=03085this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=430863 loop iterations should follow:30872 430883 430894 43090**********************************3091*** C-style else-if's ***3092This should be displayed3093*************************3094*** WHILE tests ***30950 is smaller than 2030961 is smaller than 2030972 is smaller than 2030983 is smaller than 2030994 is smaller than 2031005 is smaller than 2031016 is smaller than 2031027 is smaller than 2031038 is smaller than 2031049 is smaller than 20310510 is smaller than 20310611 is smaller than 20310712 is smaller than 20310813 is smaller than 20310914 is smaller than 20311015 is smaller than 20311116 is smaller than 20311217 is smaller than 20311318 is smaller than 20311419 is smaller than 20311520 equals 20311621 is greater than 20311722 is greater than 20311823 is greater than 20311924 is greater than 20312025 is greater than 20312126 is greater than 20312227 is greater than 20312328 is greater than 20312429 is greater than 20312530 is greater than 20312631 is greater than 20312732 is greater than 20312833 is greater than 20312934 is greater than 20313035 is greater than 20313136 is greater than 20313237 is greater than 20313338 is greater than 20313439 is greater than 203135*******************3136*** Nested WHILEs ***3137Each array variable should be equal to the sum of its indices:3138${test00}[0] = 03139${test00}[1] = 13140${test00}[2] = 23141${test01}[0] = 13142${test01}[1] = 23143${test01}[2] = 33144${test02}[0] = 23145${test02}[1] = 33146${test02}[2] = 43147${test10}[0] = 13148${test10}[1] = 23149${test10}[2] = 33150${test11}[0] = 23151${test11}[1] = 33152${test11}[2] = 43153${test12}[0] = 33154${test12}[1] = 43155${test12}[2] = 53156${test20}[0] = 23157${test20}[1] = 33158${test20}[2] = 43159${test21}[0] = 33160${test21}[1] = 43161${test21}[2] = 53162${test22}[0] = 43163${test22}[1] = 53164${test22}[2] = 63165*********************3166*** hash test... ***3167commented out...3168**************************3169*** Hash resizing test ***3170ba3171baa3172baaa3173baaaa3174baaaaa3175baaaaaa3176baaaaaaa3177baaaaaaaa3178baaaaaaaaa3179baaaaaaaaaa3180ba3181103182baa318393184baaa318583186baaaa318773188baaaaa318963190baaaaaa319153192baaaaaaa319343194baaaaaaaa319533196baaaaaaaaa319723198baaaaaaaaaa319913200**************************3201*** break/continue test ***3202$i should go from 0 to 23203$j should go from 3 to 4, and $q should go from 3 to 43204 $j=33205 $q=33206 $q=43207 $j=43208 $q=33209 $q=43210$j should go from 0 to 23211 $j=03212 $j=13213 $j=23214$k should go from 0 to 23215 $k=03216 $k=13217 $k=23218$i=03219$j should go from 3 to 4, and $q should go from 3 to 43220 $j=33221 $q=33222 $q=43223 $j=43224 $q=33225 $q=43226$j should go from 0 to 23227 $j=03228 $j=13229 $j=23230$k should go from 0 to 23231 $k=03232 $k=13233 $k=23234$i=13235$j should go from 3 to 4, and $q should go from 3 to 43236 $j=33237 $q=33238 $q=43239 $j=43240 $q=33241 $q=43242$j should go from 0 to 23243 $j=03244 $j=13245 $j=23246$k should go from 0 to 23247 $k=03248 $k=13249 $k=23250$i=23251***********************3252*** Nested file include test ***3253<html>3254This is Finish.phtml. This file is supposed to be included3255from regression_test.phtml. This is normal HTML.3256and this is PHP code, 2+2=43257</html>3258********************************3259Tests completed.3260<html>3261<head>3262*** Testing assignments and variable aliasing: ***3263This should read "blah": blah3264This should read "this is nifty": this is nifty3265*************************************************3266*** Testing integer operators ***3267Correct result - 8: 83268Correct result - 8: 83269Correct result - 2: 23270Correct result - -2: -23271Correct result - 15: 153272Correct result - 15: 153273Correct result - 2: 23274Correct result - 3: 33275*********************************3276*** Testing real operators ***3277Correct result - 8: 83278Correct result - 8: 83279Correct result - 2: 23280Correct result - -2: -23281Correct result - 15: 153282Correct result - 15: 153283Correct result - 2: 23284Correct result - 3: 33285*********************************3286*** Testing if/elseif/else control ***3287This works3288this_still_works3289should_print3290*** Seriously nested if's test ***3291** spelling correction by kluzz **3292Only two lines of text should follow:3293this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=03294this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=432953 loop iterations should follow:32962 432973 432984 43299**********************************3300*** C-style else-if's ***3301This should be displayed3302*************************3303*** WHILE tests ***33040 is smaller than 2033051 is smaller than 2033062 is smaller than 2033073 is smaller than 2033084 is smaller than 2033095 is smaller than 2033106 is smaller than 2033117 is smaller than 2033128 is smaller than 2033139 is smaller than 20331410 is smaller than 20331511 is smaller than 20331612 is smaller than 20331713 is smaller than 20331814 is smaller than 20331915 is smaller than 20332016 is smaller than 20332117 is smaller than 20332218 is smaller than 20332319 is smaller than 20332420 equals 20332521 is greater than 20332622 is greater than 20332723 is greater than 20332824 is greater than 20332925 is greater than 20333026 is greater than 20333127 is greater than 20333228 is greater than 20333329 is greater than 20333430 is greater than 20333531 is greater than 20333632 is greater than 20333733 is greater than 20333834 is greater than 20333935 is greater than 20334036 is greater than 20334137 is greater than 20334238 is greater than 20334339 is greater than 203344*******************3345*** Nested WHILEs ***3346Each array variable should be equal to the sum of its indices:3347${test00}[0] = 03348${test00}[1] = 13349${test00}[2] = 23350${test01}[0] = 13351${test01}[1] = 23352${test01}[2] = 33353${test02}[0] = 23354${test02}[1] = 33355${test02}[2] = 43356${test10}[0] = 13357${test10}[1] = 23358${test10}[2] = 33359${test11}[0] = 23360${test11}[1] = 33361${test11}[2] = 43362${test12}[0] = 33363${test12}[1] = 43364${test12}[2] = 53365${test20}[0] = 23366${test20}[1] = 33367${test20}[2] = 43368${test21}[0] = 33369${test21}[1] = 43370${test21}[2] = 53371${test22}[0] = 43372${test22}[1] = 53373${test22}[2] = 63374*********************3375*** hash test... ***3376commented out...3377**************************3378*** Hash resizing test ***3379ba3380baa3381baaa3382baaaa3383baaaaa3384baaaaaa3385baaaaaaa3386baaaaaaaa3387baaaaaaaaa3388baaaaaaaaaa3389ba3390103391baa339293393baaa339483395baaaa339673397baaaaa339863399baaaaaa340053401baaaaaaa340243403baaaaaaaa340433405baaaaaaaaa340623407baaaaaaaaaa340813409**************************3410*** break/continue test ***3411$i should go from 0 to 23412$j should go from 3 to 4, and $q should go from 3 to 43413 $j=33414 $q=33415 $q=43416 $j=43417 $q=33418 $q=43419$j should go from 0 to 23420 $j=03421 $j=13422 $j=23423$k should go from 0 to 23424 $k=03425 $k=13426 $k=23427$i=03428$j should go from 3 to 4, and $q should go from 3 to 43429 $j=33430 $q=33431 $q=43432 $j=43433 $q=33434 $q=43435$j should go from 0 to 23436 $j=03437 $j=13438 $j=23439$k should go from 0 to 23440 $k=03441 $k=13442 $k=23443$i=13444$j should go from 3 to 4, and $q should go from 3 to 43445 $j=33446 $q=33447 $q=43448 $j=43449 $q=33450 $q=43451$j should go from 0 to 23452 $j=03453 $j=13454 $j=23455$k should go from 0 to 23456 $k=03457 $k=13458 $k=23459$i=23460***********************3461*** Nested file include test ***3462<html>3463This is Finish.phtml. This file is supposed to be included3464from regression_test.phtml. This is normal HTML.3465and this is PHP code, 2+2=43466</html>3467********************************3468Tests completed.3469<html>3470<head>3471*** Testing assignments and variable aliasing: ***3472This should read "blah": blah3473This should read "this is nifty": this is nifty3474*************************************************3475*** Testing integer operators ***3476Correct result - 8: 83477Correct result - 8: 83478Correct result - 2: 23479Correct result - -2: -23480Correct result - 15: 153481Correct result - 15: 153482Correct result - 2: 23483Correct result - 3: 33484*********************************3485*** Testing real operators ***3486Correct result - 8: 83487Correct result - 8: 83488Correct result - 2: 23489Correct result - -2: -23490Correct result - 15: 153491Correct result - 15: 153492Correct result - 2: 23493Correct result - 3: 33494*********************************3495*** Testing if/elseif/else control ***3496This works3497this_still_works3498should_print3499*** Seriously nested if's test ***3500** spelling correction by kluzz **3501Only two lines of text should follow:3502this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=03503this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=435043 loop iterations should follow:35052 435063 435074 43508**********************************3509*** C-style else-if's ***3510This should be displayed3511*************************3512*** WHILE tests ***35130 is smaller than 2035141 is smaller than 2035152 is smaller than 2035163 is smaller than 2035174 is smaller than 2035185 is smaller than 2035196 is smaller than 2035207 is smaller than 2035218 is smaller than 2035229 is smaller than 20352310 is smaller than 20352411 is smaller than 20352512 is smaller than 20352613 is smaller than 20352714 is smaller than 20352815 is smaller than 20352916 is smaller than 20353017 is smaller than 20353118 is smaller than 20353219 is smaller than 20353320 equals 20353421 is greater than 20353522 is greater than 20353623 is greater than 20353724 is greater than 20353825 is greater than 20353926 is greater than 20354027 is greater than 20354128 is greater than 20354229 is greater than 20354330 is greater than 20354431 is greater than 20354532 is greater than 20354633 is greater than 20354734 is greater than 20354835 is greater than 20354936 is greater than 20355037 is greater than 20355138 is greater than 20355239 is greater than 203553*******************3554*** Nested WHILEs ***3555Each array variable should be equal to the sum of its indices:3556${test00}[0] = 03557${test00}[1] = 13558${test00}[2] = 23559${test01}[0] = 13560${test01}[1] = 23561${test01}[2] = 33562${test02}[0] = 23563${test02}[1] = 33564${test02}[2] = 43565${test10}[0] = 13566${test10}[1] = 23567${test10}[2] = 33568${test11}[0] = 23569${test11}[1] = 33570${test11}[2] = 43571${test12}[0] = 33572${test12}[1] = 43573${test12}[2] = 53574${test20}[0] = 23575${test20}[1] = 33576${test20}[2] = 43577${test21}[0] = 33578${test21}[1] = 43579${test21}[2] = 53580${test22}[0] = 43581${test22}[1] = 53582${test22}[2] = 63583*********************3584*** hash test... ***3585commented out...3586**************************3587*** Hash resizing test ***3588ba3589baa3590baaa3591baaaa3592baaaaa3593baaaaaa3594baaaaaaa3595baaaaaaaa3596baaaaaaaaa3597baaaaaaaaaa3598ba3599103600baa360193602baaa360383604baaaa360573606baaaaa360763608baaaaaa360953610baaaaaaa361143612baaaaaaaa361333614baaaaaaaaa361523616baaaaaaaaaa361713618**************************3619*** break/continue test ***3620$i should go from 0 to 23621$j should go from 3 to 4, and $q should go from 3 to 43622 $j=33623 $q=33624 $q=43625 $j=43626 $q=33627 $q=43628$j should go from 0 to 23629 $j=03630 $j=13631 $j=23632$k should go from 0 to 23633 $k=03634 $k=13635 $k=23636$i=03637$j should go from 3 to 4, and $q should go from 3 to 43638 $j=33639 $q=33640 $q=43641 $j=43642 $q=33643 $q=43644$j should go from 0 to 23645 $j=03646 $j=13647 $j=23648$k should go from 0 to 23649 $k=03650 $k=13651 $k=23652$i=13653$j should go from 3 to 4, and $q should go from 3 to 43654 $j=33655 $q=33656 $q=43657 $j=43658 $q=33659 $q=43660$j should go from 0 to 23661 $j=03662 $j=13663 $j=23664$k should go from 0 to 23665 $k=03666 $k=13667 $k=23668$i=23669***********************3670*** Nested file include test ***3671<html>3672This is Finish.phtml. This file is supposed to be included3673from regression_test.phtml. This is normal HTML.3674and this is PHP code, 2+2=43675</html>3676********************************3677Tests completed.3678<html>3679<head>3680*** Testing assignments and variable aliasing: ***3681This should read "blah": blah3682This should read "this is nifty": this is nifty3683*************************************************3684*** Testing integer operators ***3685Correct result - 8: 83686Correct result - 8: 83687Correct result - 2: 23688Correct result - -2: -23689Correct result - 15: 153690Correct result - 15: 153691Correct result - 2: 23692Correct result - 3: 33693*********************************3694*** Testing real operators ***3695Correct result - 8: 83696Correct result - 8: 83697Correct result - 2: 23698Correct result - -2: -23699Correct result - 15: 153700Correct result - 15: 153701Correct result - 2: 23702Correct result - 3: 33703*********************************3704*** Testing if/elseif/else control ***3705This works3706this_still_works3707should_print3708*** Seriously nested if's test ***3709** spelling correction by kluzz **3710Only two lines of text should follow:3711this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=03712this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=437133 loop iterations should follow:37142 437153 437164 43717**********************************3718*** C-style else-if's ***3719This should be displayed3720*************************3721*** WHILE tests ***37220 is smaller than 2037231 is smaller than 2037242 is smaller than 2037253 is smaller than 2037264 is smaller than 2037275 is smaller than 2037286 is smaller than 2037297 is smaller than 2037308 is smaller than 2037319 is smaller than 20373210 is smaller than 20373311 is smaller than 20373412 is smaller than 20373513 is smaller than 20373614 is smaller than 20373715 is smaller than 20373816 is smaller than 20373917 is smaller than 20374018 is smaller than 20374119 is smaller than 20374220 equals 20374321 is greater than 20374422 is greater than 20374523 is greater than 20374624 is greater than 20374725 is greater than 20374826 is greater than 20374927 is greater than 20375028 is greater than 20375129 is greater than 20375230 is greater than 20375331 is greater than 20375432 is greater than 20375533 is greater than 20375634 is greater than 20375735 is greater than 20375836 is greater than 20375937 is greater than 20376038 is greater than 20376139 is greater than 203762*******************3763*** Nested WHILEs ***3764Each array variable should be equal to the sum of its indices:3765${test00}[0] = 03766${test00}[1] = 13767${test00}[2] = 23768${test01}[0] = 13769${test01}[1] = 23770${test01}[2] = 33771${test02}[0] = 23772${test02}[1] = 33773${test02}[2] = 43774${test10}[0] = 13775${test10}[1] = 23776${test10}[2] = 33777${test11}[0] = 23778${test11}[1] = 33779${test11}[2] = 43780${test12}[0] = 33781${test12}[1] = 43782${test12}[2] = 53783${test20}[0] = 23784${test20}[1] = 33785${test20}[2] = 43786${test21}[0] = 33787${test21}[1] = 43788${test21}[2] = 53789${test22}[0] = 43790${test22}[1] = 53791${test22}[2] = 63792*********************3793*** hash test... ***3794commented out...3795**************************3796*** Hash resizing test ***3797ba3798baa3799baaa3800baaaa3801baaaaa3802baaaaaa3803baaaaaaa3804baaaaaaaa3805baaaaaaaaa3806baaaaaaaaaa3807ba3808103809baa381093811baaa381283813baaaa381473815baaaaa381663817baaaaaa381853819baaaaaaa382043821baaaaaaaa382233823baaaaaaaaa382423825baaaaaaaaaa382613827**************************3828*** break/continue test ***3829$i should go from 0 to 23830$j should go from 3 to 4, and $q should go from 3 to 43831 $j=33832 $q=33833 $q=43834 $j=43835 $q=33836 $q=43837$j should go from 0 to 23838 $j=03839 $j=13840 $j=23841$k should go from 0 to 23842 $k=03843 $k=13844 $k=23845$i=03846$j should go from 3 to 4, and $q should go from 3 to 43847 $j=33848 $q=33849 $q=43850 $j=43851 $q=33852 $q=43853$j should go from 0 to 23854 $j=03855 $j=13856 $j=23857$k should go from 0 to 23858 $k=03859 $k=13860 $k=23861$i=13862$j should go from 3 to 4, and $q should go from 3 to 43863 $j=33864 $q=33865 $q=43866 $j=43867 $q=33868 $q=43869$j should go from 0 to 23870 $j=03871 $j=13872 $j=23873$k should go from 0 to 23874 $k=03875 $k=13876 $k=23877$i=23878***********************3879*** Nested file include test ***3880<html>3881This is Finish.phtml. This file is supposed to be included3882from regression_test.phtml. This is normal HTML.3883and this is PHP code, 2+2=43884</html>3885********************************3886Tests completed.3887<html>3888<head>3889*** Testing assignments and variable aliasing: ***3890This should read "blah": blah3891This should read "this is nifty": this is nifty3892*************************************************3893*** Testing integer operators ***3894Correct result - 8: 83895Correct result - 8: 83896Correct result - 2: 23897Correct result - -2: -23898Correct result - 15: 153899Correct result - 15: 153900Correct result - 2: 23901Correct result - 3: 33902*********************************3903*** Testing real operators ***3904Correct result - 8: 83905Correct result - 8: 83906Correct result - 2: 23907Correct result - -2: -23908Correct result - 15: 153909Correct result - 15: 153910Correct result - 2: 23911Correct result - 3: 33912*********************************3913*** Testing if/elseif/else control ***3914This works3915this_still_works3916should_print3917*** Seriously nested if's test ***3918** spelling correction by kluzz **3919Only two lines of text should follow:3920this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=03921this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=439223 loop iterations should follow:39232 439243 439254 43926**********************************3927*** C-style else-if's ***3928This should be displayed3929*************************3930*** WHILE tests ***39310 is smaller than 2039321 is smaller than 2039332 is smaller than 2039343 is smaller than 2039354 is smaller than 2039365 is smaller than 2039376 is smaller than 2039387 is smaller than 2039398 is smaller than 2039409 is smaller than 20394110 is smaller than 20394211 is smaller than 20394312 is smaller than 20394413 is smaller than 20394514 is smaller than 20394615 is smaller than 20394716 is smaller than 20394817 is smaller than 20394918 is smaller than 20395019 is smaller than 20395120 equals 20395221 is greater than 20395322 is greater than 20395423 is greater than 20395524 is greater than 20395625 is greater than 20395726 is greater than 20395827 is greater than 20395928 is greater than 20396029 is greater than 20396130 is greater than 20396231 is greater than 20396332 is greater than 20396433 is greater than 20396534 is greater than 20396635 is greater than 20396736 is greater than 20396837 is greater than 20396938 is greater than 20397039 is greater than 203971*******************3972*** Nested WHILEs ***3973Each array variable should be equal to the sum of its indices:3974${test00}[0] = 03975${test00}[1] = 13976${test00}[2] = 23977${test01}[0] = 13978${test01}[1] = 23979${test01}[2] = 33980${test02}[0] = 23981${test02}[1] = 33982${test02}[2] = 43983${test10}[0] = 13984${test10}[1] = 23985${test10}[2] = 33986${test11}[0] = 23987${test11}[1] = 33988${test11}[2] = 43989${test12}[0] = 33990${test12}[1] = 43991${test12}[2] = 53992${test20}[0] = 23993${test20}[1] = 33994${test20}[2] = 43995${test21}[0] = 33996${test21}[1] = 43997${test21}[2] = 53998${test22}[0] = 43999${test22}[1] = 54000${test22}[2] = 64001*********************4002*** hash test... ***4003commented out...4004**************************4005*** Hash resizing test ***4006ba4007baa4008baaa4009baaaa4010baaaaa4011baaaaaa4012baaaaaaa4013baaaaaaaa4014baaaaaaaaa4015baaaaaaaaaa4016ba4017104018baa401994020baaa402184022baaaa402374024baaaaa402564026baaaaaa402754028baaaaaaa402944030baaaaaaaa403134032baaaaaaaaa403324034baaaaaaaaaa403514036**************************4037*** break/continue test ***4038$i should go from 0 to 24039$j should go from 3 to 4, and $q should go from 3 to 44040 $j=34041 $q=34042 $q=44043 $j=44044 $q=34045 $q=44046$j should go from 0 to 24047 $j=04048 $j=14049 $j=24050$k should go from 0 to 24051 $k=04052 $k=14053 $k=24054$i=04055$j should go from 3 to 4, and $q should go from 3 to 44056 $j=34057 $q=34058 $q=44059 $j=44060 $q=34061 $q=44062$j should go from 0 to 24063 $j=04064 $j=14065 $j=24066$k should go from 0 to 24067 $k=04068 $k=14069 $k=24070$i=14071$j should go from 3 to 4, and $q should go from 3 to 44072 $j=34073 $q=34074 $q=44075 $j=44076 $q=34077 $q=44078$j should go from 0 to 24079 $j=04080 $j=14081 $j=24082$k should go from 0 to 24083 $k=04084 $k=14085 $k=24086$i=24087***********************4088*** Nested file include test ***4089<html>4090This is Finish.phtml. This file is supposed to be included4091from regression_test.phtml. This is normal HTML.4092and this is PHP code, 2+2=44093</html>4094********************************4095Tests completed.4096<html>4097<head>4098*** Testing assignments and variable aliasing: ***4099This should read "blah": blah4100This should read "this is nifty": this is nifty4101*************************************************4102*** Testing integer operators ***4103Correct result - 8: 84104Correct result - 8: 84105Correct result - 2: 24106Correct result - -2: -24107Correct result - 15: 154108Correct result - 15: 154109Correct result - 2: 24110Correct result - 3: 34111*********************************4112*** Testing real operators ***4113Correct result - 8: 84114Correct result - 8: 84115Correct result - 2: 24116Correct result - -2: -24117Correct result - 15: 154118Correct result - 15: 154119Correct result - 2: 24120Correct result - 3: 34121*********************************4122*** Testing if/elseif/else control ***4123This works4124this_still_works4125should_print4126*** Seriously nested if's test ***4127** spelling correction by kluzz **4128Only two lines of text should follow:4129this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=04130this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=441313 loop iterations should follow:41322 441333 441344 44135**********************************4136*** C-style else-if's ***4137This should be displayed4138*************************4139*** WHILE tests ***41400 is smaller than 2041411 is smaller than 2041422 is smaller than 2041433 is smaller than 2041444 is smaller than 2041455 is smaller than 2041466 is smaller than 2041477 is smaller than 2041488 is smaller than 2041499 is smaller than 20415010 is smaller than 20415111 is smaller than 20415212 is smaller than 20415313 is smaller than 20415414 is smaller than 20415515 is smaller than 20415616 is smaller than 20415717 is smaller than 20415818 is smaller than 20415919 is smaller than 20416020 equals 20416121 is greater than 20416222 is greater than 20416323 is greater than 20416424 is greater than 20416525 is greater than 20416626 is greater than 20416727 is greater than 20416828 is greater than 20416929 is greater than 20417030 is greater than 20417131 is greater than 20417232 is greater than 20417333 is greater than 20417434 is greater than 20417535 is greater than 20417636 is greater than 20417737 is greater than 20417838 is greater than 20417939 is greater than 204180*******************4181*** Nested WHILEs ***4182Each array variable should be equal to the sum of its indices:4183${test00}[0] = 04184${test00}[1] = 14185${test00}[2] = 24186${test01}[0] = 14187${test01}[1] = 24188${test01}[2] = 34189${test02}[0] = 24190${test02}[1] = 34191${test02}[2] = 44192${test10}[0] = 14193${test10}[1] = 24194${test10}[2] = 34195${test11}[0] = 24196${test11}[1] = 34197${test11}[2] = 44198${test12}[0] = 34199${test12}[1] = 44200${test12}[2] = 54201${test20}[0] = 24202${test20}[1] = 34203${test20}[2] = 44204${test21}[0] = 34205${test21}[1] = 44206${test21}[2] = 54207${test22}[0] = 44208${test22}[1] = 54209${test22}[2] = 64210*********************4211*** hash test... ***4212commented out...4213**************************4214*** Hash resizing test ***4215ba4216baa4217baaa4218baaaa4219baaaaa4220baaaaaa4221baaaaaaa4222baaaaaaaa4223baaaaaaaaa4224baaaaaaaaaa4225ba4226104227baa422894229baaa423084231baaaa423274233baaaaa423464235baaaaaa423654237baaaaaaa423844239baaaaaaaa424034241baaaaaaaaa424224243baaaaaaaaaa424414245**************************4246*** break/continue test ***4247$i should go from 0 to 24248$j should go from 3 to 4, and $q should go from 3 to 44249 $j=34250 $q=34251 $q=44252 $j=44253 $q=34254 $q=44255$j should go from 0 to 24256 $j=04257 $j=14258 $j=24259$k should go from 0 to 24260 $k=04261 $k=14262 $k=24263$i=04264$j should go from 3 to 4, and $q should go from 3 to 44265 $j=34266 $q=34267 $q=44268 $j=44269 $q=34270 $q=44271$j should go from 0 to 24272 $j=04273 $j=14274 $j=24275$k should go from 0 to 24276 $k=04277 $k=14278 $k=24279$i=14280$j should go from 3 to 4, and $q should go from 3 to 44281 $j=34282 $q=34283 $q=44284 $j=44285 $q=34286 $q=44287$j should go from 0 to 24288 $j=04289 $j=14290 $j=24291$k should go from 0 to 24292 $k=04293 $k=14294 $k=24295$i=24296***********************4297*** Nested file include test ***4298<html>4299This is Finish.phtml. This file is supposed to be included4300from regression_test.phtml. This is normal HTML.4301and this is PHP code, 2+2=44302</html>4303********************************4304Tests completed.4305<html>4306<head>4307*** Testing assignments and variable aliasing: ***4308This should read "blah": blah4309This should read "this is nifty": this is nifty4310*************************************************4311*** Testing integer operators ***4312Correct result - 8: 84313Correct result - 8: 84314Correct result - 2: 24315Correct result - -2: -24316Correct result - 15: 154317Correct result - 15: 154318Correct result - 2: 24319Correct result - 3: 34320*********************************4321*** Testing real operators ***4322Correct result - 8: 84323Correct result - 8: 84324Correct result - 2: 24325Correct result - -2: -24326Correct result - 15: 154327Correct result - 15: 154328Correct result - 2: 24329Correct result - 3: 34330*********************************4331*** Testing if/elseif/else control ***4332This works4333this_still_works4334should_print4335*** Seriously nested if's test ***4336** spelling correction by kluzz **4337Only two lines of text should follow:4338this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=04339this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=443403 loop iterations should follow:43412 443423 443434 44344**********************************4345*** C-style else-if's ***4346This should be displayed4347*************************4348*** WHILE tests ***43490 is smaller than 2043501 is smaller than 2043512 is smaller than 2043523 is smaller than 2043534 is smaller than 2043545 is smaller than 2043556 is smaller than 2043567 is smaller than 2043578 is smaller than 2043589 is smaller than 20435910 is smaller than 20436011 is smaller than 20436112 is smaller than 20436213 is smaller than 20436314 is smaller than 20436415 is smaller than 20436516 is smaller than 20436617 is smaller than 20436718 is smaller than 20436819 is smaller than 20436920 equals 20437021 is greater than 20437122 is greater than 20437223 is greater than 20437324 is greater than 20437425 is greater than 20437526 is greater than 20437627 is greater than 20437728 is greater than 20437829 is greater than 20437930 is greater than 20438031 is greater than 20438132 is greater than 20438233 is greater than 20438334 is greater than 20438435 is greater than 20438536 is greater than 20438637 is greater than 20438738 is greater than 20438839 is greater than 204389*******************4390*** Nested WHILEs ***4391Each array variable should be equal to the sum of its indices:4392${test00}[0] = 04393${test00}[1] = 14394${test00}[2] = 24395${test01}[0] = 14396${test01}[1] = 24397${test01}[2] = 34398${test02}[0] = 24399${test02}[1] = 34400${test02}[2] = 44401${test10}[0] = 14402${test10}[1] = 24403${test10}[2] = 34404${test11}[0] = 24405${test11}[1] = 34406${test11}[2] = 44407${test12}[0] = 34408${test12}[1] = 44409${test12}[2] = 54410${test20}[0] = 24411${test20}[1] = 34412${test20}[2] = 44413${test21}[0] = 34414${test21}[1] = 44415${test21}[2] = 54416${test22}[0] = 44417${test22}[1] = 54418${test22}[2] = 64419*********************4420*** hash test... ***4421commented out...4422**************************4423*** Hash resizing test ***4424ba4425baa4426baaa4427baaaa4428baaaaa4429baaaaaa4430baaaaaaa4431baaaaaaaa4432baaaaaaaaa4433baaaaaaaaaa4434ba4435104436baa443794438baaa443984440baaaa444174442baaaaa444364444baaaaaa444554446baaaaaaa444744448baaaaaaaa444934450baaaaaaaaa445124452baaaaaaaaaa445314454**************************4455*** break/continue test ***4456$i should go from 0 to 24457$j should go from 3 to 4, and $q should go from 3 to 44458 $j=34459 $q=34460 $q=44461 $j=44462 $q=34463 $q=44464$j should go from 0 to 24465 $j=04466 $j=14467 $j=24468$k should go from 0 to 24469 $k=04470 $k=14471 $k=24472$i=04473$j should go from 3 to 4, and $q should go from 3 to 44474 $j=34475 $q=34476 $q=44477 $j=44478 $q=34479 $q=44480$j should go from 0 to 24481 $j=04482 $j=14483 $j=24484$k should go from 0 to 24485 $k=04486 $k=14487 $k=24488$i=14489$j should go from 3 to 4, and $q should go from 3 to 44490 $j=34491 $q=34492 $q=44493 $j=44494 $q=34495 $q=44496$j should go from 0 to 24497 $j=04498 $j=14499 $j=24500$k should go from 0 to 24501 $k=04502 $k=14503 $k=24504$i=24505***********************4506*** Nested file include test ***4507<html>4508This is Finish.phtml. This file is supposed to be included4509from regression_test.phtml. This is normal HTML.4510and this is PHP code, 2+2=44511</html>4512********************************4513Tests completed.4514<html>4515<head>4516*** Testing assignments and variable aliasing: ***4517This should read "blah": blah4518This should read "this is nifty": this is nifty4519*************************************************4520*** Testing integer operators ***4521Correct result - 8: 84522Correct result - 8: 84523Correct result - 2: 24524Correct result - -2: -24525Correct result - 15: 154526Correct result - 15: 154527Correct result - 2: 24528Correct result - 3: 34529*********************************4530*** Testing real operators ***4531Correct result - 8: 84532Correct result - 8: 84533Correct result - 2: 24534Correct result - -2: -24535Correct result - 15: 154536Correct result - 15: 154537Correct result - 2: 24538Correct result - 3: 34539*********************************4540*** Testing if/elseif/else control ***4541This works4542this_still_works4543should_print4544*** Seriously nested if's test ***4545** spelling correction by kluzz **4546Only two lines of text should follow:4547this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=04548this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=445493 loop iterations should follow:45502 445513 445524 44553**********************************4554*** C-style else-if's ***4555This should be displayed4556*************************4557*** WHILE tests ***45580 is smaller than 2045591 is smaller than 2045602 is smaller than 2045613 is smaller than 2045624 is smaller than 2045635 is smaller than 2045646 is smaller than 2045657 is smaller than 2045668 is smaller than 2045679 is smaller than 20456810 is smaller than 20456911 is smaller than 20457012 is smaller than 20457113 is smaller than 20457214 is smaller than 20457315 is smaller than 20457416 is smaller than 20457517 is smaller than 20457618 is smaller than 20457719 is smaller than 20457820 equals 20457921 is greater than 20458022 is greater than 20458123 is greater than 20458224 is greater than 20458325 is greater than 20458426 is greater than 20458527 is greater than 20458628 is greater than 20458729 is greater than 20458830 is greater than 20458931 is greater than 20459032 is greater than 20459133 is greater than 20459234 is greater than 20459335 is greater than 20459436 is greater than 20459537 is greater than 20459638 is greater than 20459739 is greater than 204598*******************4599*** Nested WHILEs ***4600Each array variable should be equal to the sum of its indices:4601${test00}[0] = 04602${test00}[1] = 14603${test00}[2] = 24604${test01}[0] = 14605${test01}[1] = 24606${test01}[2] = 34607${test02}[0] = 24608${test02}[1] = 34609${test02}[2] = 44610${test10}[0] = 14611${test10}[1] = 24612${test10}[2] = 34613${test11}[0] = 24614${test11}[1] = 34615${test11}[2] = 44616${test12}[0] = 34617${test12}[1] = 44618${test12}[2] = 54619${test20}[0] = 24620${test20}[1] = 34621${test20}[2] = 44622${test21}[0] = 34623${test21}[1] = 44624${test21}[2] = 54625${test22}[0] = 44626${test22}[1] = 54627${test22}[2] = 64628*********************4629*** hash test... ***4630commented out...4631**************************4632*** Hash resizing test ***4633ba4634baa4635baaa4636baaaa4637baaaaa4638baaaaaa4639baaaaaaa4640baaaaaaaa4641baaaaaaaaa4642baaaaaaaaaa4643ba4644104645baa464694647baaa464884649baaaa465074651baaaaa465264653baaaaaa465454655baaaaaaa465644657baaaaaaaa465834659baaaaaaaaa466024661baaaaaaaaaa466214663**************************4664*** break/continue test ***4665$i should go from 0 to 24666$j should go from 3 to 4, and $q should go from 3 to 44667 $j=34668 $q=34669 $q=44670 $j=44671 $q=34672 $q=44673$j should go from 0 to 24674 $j=04675 $j=14676 $j=24677$k should go from 0 to 24678 $k=04679 $k=14680 $k=24681$i=04682$j should go from 3 to 4, and $q should go from 3 to 44683 $j=34684 $q=34685 $q=44686 $j=44687 $q=34688 $q=44689$j should go from 0 to 24690 $j=04691 $j=14692 $j=24693$k should go from 0 to 24694 $k=04695 $k=14696 $k=24697$i=14698$j should go from 3 to 4, and $q should go from 3 to 44699 $j=34700 $q=34701 $q=44702 $j=44703 $q=34704 $q=44705$j should go from 0 to 24706 $j=04707 $j=14708 $j=24709$k should go from 0 to 24710 $k=04711 $k=14712 $k=24713$i=24714***********************4715*** Nested file include test ***4716<html>4717This is Finish.phtml. This file is supposed to be included4718from regression_test.phtml. This is normal HTML.4719and this is PHP code, 2+2=44720</html>4721********************************4722Tests completed.4723<html>4724<head>4725*** Testing assignments and variable aliasing: ***4726This should read "blah": blah4727This should read "this is nifty": this is nifty4728*************************************************4729*** Testing integer operators ***4730Correct result - 8: 84731Correct result - 8: 84732Correct result - 2: 24733Correct result - -2: -24734Correct result - 15: 154735Correct result - 15: 154736Correct result - 2: 24737Correct result - 3: 34738*********************************4739*** Testing real operators ***4740Correct result - 8: 84741Correct result - 8: 84742Correct result - 2: 24743Correct result - -2: -24744Correct result - 15: 154745Correct result - 15: 154746Correct result - 2: 24747Correct result - 3: 34748*********************************4749*** Testing if/elseif/else control ***4750This works4751this_still_works4752should_print4753*** Seriously nested if's test ***4754** spelling correction by kluzz **4755Only two lines of text should follow:4756this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=04757this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=447583 loop iterations should follow:47592 447603 447614 44762**********************************4763*** C-style else-if's ***4764This should be displayed4765*************************4766*** WHILE tests ***47670 is smaller than 2047681 is smaller than 2047692 is smaller than 2047703 is smaller than 2047714 is smaller than 2047725 is smaller than 2047736 is smaller than 2047747 is smaller than 2047758 is smaller than 2047769 is smaller than 20477710 is smaller than 20477811 is smaller than 20477912 is smaller than 20478013 is smaller than 20478114 is smaller than 20478215 is smaller than 20478316 is smaller than 20478417 is smaller than 20478518 is smaller than 20478619 is smaller than 20478720 equals 20478821 is greater than 20478922 is greater than 20479023 is greater than 20479124 is greater than 20479225 is greater than 20479326 is greater than 20479427 is greater than 20479528 is greater than 20479629 is greater than 20479730 is greater than 20479831 is greater than 20479932 is greater than 20480033 is greater than 20480134 is greater than 20480235 is greater than 20480336 is greater than 20480437 is greater than 20480538 is greater than 20480639 is greater than 204807*******************4808*** Nested WHILEs ***4809Each array variable should be equal to the sum of its indices:4810${test00}[0] = 04811${test00}[1] = 14812${test00}[2] = 24813${test01}[0] = 14814${test01}[1] = 24815${test01}[2] = 34816${test02}[0] = 24817${test02}[1] = 34818${test02}[2] = 44819${test10}[0] = 14820${test10}[1] = 24821${test10}[2] = 34822${test11}[0] = 24823${test11}[1] = 34824${test11}[2] = 44825${test12}[0] = 34826${test12}[1] = 44827${test12}[2] = 54828${test20}[0] = 24829${test20}[1] = 34830${test20}[2] = 44831${test21}[0] = 34832${test21}[1] = 44833${test21}[2] = 54834${test22}[0] = 44835${test22}[1] = 54836${test22}[2] = 64837*********************4838*** hash test... ***4839commented out...4840**************************4841*** Hash resizing test ***4842ba4843baa4844baaa4845baaaa4846baaaaa4847baaaaaa4848baaaaaaa4849baaaaaaaa4850baaaaaaaaa4851baaaaaaaaaa4852ba4853104854baa485594856baaa485784858baaaa485974860baaaaa486164862baaaaaa486354864baaaaaaa486544866baaaaaaaa486734868baaaaaaaaa486924870baaaaaaaaaa487114872**************************4873*** break/continue test ***4874$i should go from 0 to 24875$j should go from 3 to 4, and $q should go from 3 to 44876 $j=34877 $q=34878 $q=44879 $j=44880 $q=34881 $q=44882$j should go from 0 to 24883 $j=04884 $j=14885 $j=24886$k should go from 0 to 24887 $k=04888 $k=14889 $k=24890$i=04891$j should go from 3 to 4, and $q should go from 3 to 44892 $j=34893 $q=34894 $q=44895 $j=44896 $q=34897 $q=44898$j should go from 0 to 24899 $j=04900 $j=14901 $j=24902$k should go from 0 to 24903 $k=04904 $k=14905 $k=24906$i=14907$j should go from 3 to 4, and $q should go from 3 to 44908 $j=34909 $q=34910 $q=44911 $j=44912 $q=34913 $q=44914$j should go from 0 to 24915 $j=04916 $j=14917 $j=24918$k should go from 0 to 24919 $k=04920 $k=14921 $k=24922$i=24923***********************4924*** Nested file include test ***4925<html>4926This is Finish.phtml. This file is supposed to be included4927from regression_test.phtml. This is normal HTML.4928and this is PHP code, 2+2=44929</html>4930********************************4931Tests completed.4932<html>4933<head>4934*** Testing assignments and variable aliasing: ***4935This should read "blah": blah4936This should read "this is nifty": this is nifty4937*************************************************4938*** Testing integer operators ***4939Correct result - 8: 84940Correct result - 8: 84941Correct result - 2: 24942Correct result - -2: -24943Correct result - 15: 154944Correct result - 15: 154945Correct result - 2: 24946Correct result - 3: 34947*********************************4948*** Testing real operators ***4949Correct result - 8: 84950Correct result - 8: 84951Correct result - 2: 24952Correct result - -2: -24953Correct result - 15: 154954Correct result - 15: 154955Correct result - 2: 24956Correct result - 3: 34957*********************************4958*** Testing if/elseif/else control ***4959This works4960this_still_works4961should_print4962*** Seriously nested if's test ***4963** spelling correction by kluzz **4964Only two lines of text should follow:4965this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=04966this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=449673 loop iterations should follow:49682 449693 449704 44971**********************************4972*** C-style else-if's ***4973This should be displayed4974*************************4975*** WHILE tests ***49760 is smaller than 2049771 is smaller than 2049782 is smaller than 2049793 is smaller than 2049804 is smaller than 2049815 is smaller than 2049826 is smaller than 2049837 is smaller than 2049848 is smaller than 2049859 is smaller than 20498610 is smaller than 20498711 is smaller than 20498812 is smaller than 20498913 is smaller than 20499014 is smaller than 20499115 is smaller than 20499216 is smaller than 20499317 is smaller than 20499418 is smaller than 20499519 is smaller than 20499620 equals 20499721 is greater than 20499822 is greater than 20499923 is greater than 20500024 is greater than 20500125 is greater than 20500226 is greater than 20500327 is greater than 20500428 is greater than 20500529 is greater than 20500630 is greater than 20500731 is greater than 20500832 is greater than 20500933 is greater than 20501034 is greater than 20501135 is greater than 20501236 is greater than 20501337 is greater than 20501438 is greater than 20501539 is greater than 205016*******************5017*** Nested WHILEs ***5018Each array variable should be equal to the sum of its indices:5019${test00}[0] = 05020${test00}[1] = 15021${test00}[2] = 25022${test01}[0] = 15023${test01}[1] = 25024${test01}[2] = 35025${test02}[0] = 25026${test02}[1] = 35027${test02}[2] = 45028${test10}[0] = 15029${test10}[1] = 25030${test10}[2] = 35031${test11}[0] = 25032${test11}[1] = 35033${test11}[2] = 45034${test12}[0] = 35035${test12}[1] = 45036${test12}[2] = 55037${test20}[0] = 25038${test20}[1] = 35039${test20}[2] = 45040${test21}[0] = 35041${test21}[1] = 45042${test21}[2] = 55043${test22}[0] = 45044${test22}[1] = 55045${test22}[2] = 65046*********************5047*** hash test... ***5048commented out...5049**************************5050*** Hash resizing test ***5051ba5052baa5053baaa5054baaaa5055baaaaa5056baaaaaa5057baaaaaaa5058baaaaaaaa5059baaaaaaaaa5060baaaaaaaaaa5061ba5062105063baa506495065baaa506685067baaaa506875069baaaaa507065071baaaaaa507255073baaaaaaa507445075baaaaaaaa507635077baaaaaaaaa507825079baaaaaaaaaa508015081**************************5082*** break/continue test ***5083$i should go from 0 to 25084$j should go from 3 to 4, and $q should go from 3 to 45085 $j=35086 $q=35087 $q=45088 $j=45089 $q=35090 $q=45091$j should go from 0 to 25092 $j=05093 $j=15094 $j=25095$k should go from 0 to 25096 $k=05097 $k=15098 $k=25099$i=05100$j should go from 3 to 4, and $q should go from 3 to 45101 $j=35102 $q=35103 $q=45104 $j=45105 $q=35106 $q=45107$j should go from 0 to 25108 $j=05109 $j=15110 $j=25111$k should go from 0 to 25112 $k=05113 $k=15114 $k=25115$i=15116$j should go from 3 to 4, and $q should go from 3 to 45117 $j=35118 $q=35119 $q=45120 $j=45121 $q=35122 $q=45123$j should go from 0 to 25124 $j=05125 $j=15126 $j=25127$k should go from 0 to 25128 $k=05129 $k=15130 $k=25131$i=25132***********************5133*** Nested file include test ***5134<html>5135This is Finish.phtml. This file is supposed to be included5136from regression_test.phtml. This is normal HTML.5137and this is PHP code, 2+2=45138</html>5139********************************5140Tests completed.5141<html>5142<head>5143*** Testing assignments and variable aliasing: ***5144This should read "blah": blah5145This should read "this is nifty": this is nifty5146*************************************************5147*** Testing integer operators ***5148Correct result - 8: 85149Correct result - 8: 85150Correct result - 2: 25151Correct result - -2: -25152Correct result - 15: 155153Correct result - 15: 155154Correct result - 2: 25155Correct result - 3: 35156*********************************5157*** Testing real operators ***5158Correct result - 8: 85159Correct result - 8: 85160Correct result - 2: 25161Correct result - -2: -25162Correct result - 15: 155163Correct result - 15: 155164Correct result - 2: 25165Correct result - 3: 35166*********************************5167*** Testing if/elseif/else control ***5168This works5169this_still_works5170should_print5171*** Seriously nested if's test ***5172** spelling correction by kluzz **5173Only two lines of text should follow:5174this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=05175this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=451763 loop iterations should follow:51772 451783 451794 45180**********************************5181*** C-style else-if's ***5182This should be displayed5183*************************5184*** WHILE tests ***51850 is smaller than 2051861 is smaller than 2051872 is smaller than 2051883 is smaller than 2051894 is smaller than 2051905 is smaller than 2051916 is smaller than 2051927 is smaller than 2051938 is smaller than 2051949 is smaller than 20519510 is smaller than 20519611 is smaller than 20519712 is smaller than 20519813 is smaller than 20519914 is smaller than 20520015 is smaller than 20520116 is smaller than 20520217 is smaller than 20520318 is smaller than 20520419 is smaller than 20520520 equals 20520621 is greater than 20520722 is greater than 20520823 is greater than 20520924 is greater than 20521025 is greater than 20521126 is greater than 20521227 is greater than 20521328 is greater than 20521429 is greater than 20521530 is greater than 20521631 is greater than 20521732 is greater than 20521833 is greater than 20521934 is greater than 20522035 is greater than 20522136 is greater than 20522237 is greater than 20522338 is greater than 20522439 is greater than 205225*******************5226*** Nested WHILEs ***5227Each array variable should be equal to the sum of its indices:5228${test00}[0] = 05229${test00}[1] = 15230${test00}[2] = 25231${test01}[0] = 15232${test01}[1] = 25233${test01}[2] = 35234${test02}[0] = 25235${test02}[1] = 35236${test02}[2] = 45237${test10}[0] = 15238${test10}[1] = 25239${test10}[2] = 35240${test11}[0] = 25241${test11}[1] = 35242${test11}[2] = 45243${test12}[0] = 35244${test12}[1] = 45245${test12}[2] = 55246${test20}[0] = 25247${test20}[1] = 35248${test20}[2] = 45249${test21}[0] = 35250${test21}[1] = 45251${test21}[2] = 55252${test22}[0] = 45253${test22}[1] = 55254${test22}[2] = 65255*********************5256*** hash test... ***5257commented out...5258**************************5259*** Hash resizing test ***5260ba5261baa5262baaa5263baaaa5264baaaaa5265baaaaaa5266baaaaaaa5267baaaaaaaa5268baaaaaaaaa5269baaaaaaaaaa5270ba5271105272baa527395274baaa527585276baaaa527775278baaaaa527965280baaaaaa528155282baaaaaaa528345284baaaaaaaa528535286baaaaaaaaa528725288baaaaaaaaaa528915290**************************5291*** break/continue test ***5292$i should go from 0 to 25293$j should go from 3 to 4, and $q should go from 3 to 45294 $j=35295 $q=35296 $q=45297 $j=45298 $q=35299 $q=45300$j should go from 0 to 25301 $j=05302 $j=15303 $j=25304$k should go from 0 to 25305 $k=05306 $k=15307 $k=25308$i=05309$j should go from 3 to 4, and $q should go from 3 to 45310 $j=35311 $q=35312 $q=45313 $j=45314 $q=35315 $q=45316$j should go from 0 to 25317 $j=05318 $j=15319 $j=25320$k should go from 0 to 25321 $k=05322 $k=15323 $k=25324$i=15325$j should go from 3 to 4, and $q should go from 3 to 45326 $j=35327 $q=35328 $q=45329 $j=45330 $q=35331 $q=45332$j should go from 0 to 25333 $j=05334 $j=15335 $j=25336$k should go from 0 to 25337 $k=05338 $k=15339 $k=25340$i=25341***********************5342*** Nested file include test ***5343<html>5344This is Finish.phtml. This file is supposed to be included5345from regression_test.phtml. This is normal HTML.5346and this is PHP code, 2+2=45347</html>5348********************************5349Tests completed.5350<html>5351<head>5352*** Testing assignments and variable aliasing: ***5353This should read "blah": blah5354This should read "this is nifty": this is nifty5355*************************************************5356*** Testing integer operators ***5357Correct result - 8: 85358Correct result - 8: 85359Correct result - 2: 25360Correct result - -2: -25361Correct result - 15: 155362Correct result - 15: 155363Correct result - 2: 25364Correct result - 3: 35365*********************************5366*** Testing real operators ***5367Correct result - 8: 85368Correct result - 8: 85369Correct result - 2: 25370Correct result - -2: -25371Correct result - 15: 155372Correct result - 15: 155373Correct result - 2: 25374Correct result - 3: 35375*********************************5376*** Testing if/elseif/else control ***5377This works5378this_still_works5379should_print5380*** Seriously nested if's test ***5381** spelling correction by kluzz **5382Only two lines of text should follow:5383this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=05384this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=453853 loop iterations should follow:53862 453873 453884 45389**********************************5390*** C-style else-if's ***5391This should be displayed5392*************************5393*** WHILE tests ***53940 is smaller than 2053951 is smaller than 2053962 is smaller than 2053973 is smaller than 2053984 is smaller than 2053995 is smaller than 2054006 is smaller than 2054017 is smaller than 2054028 is smaller than 2054039 is smaller than 20540410 is smaller than 20540511 is smaller than 20540612 is smaller than 20540713 is smaller than 20540814 is smaller than 20540915 is smaller than 20541016 is smaller than 20541117 is smaller than 20541218 is smaller than 20541319 is smaller than 20541420 equals 20541521 is greater than 20541622 is greater than 20541723 is greater than 20541824 is greater than 20541925 is greater than 20542026 is greater than 20542127 is greater than 20542228 is greater than 20542329 is greater than 20542430 is greater than 20542531 is greater than 20542632 is greater than 20542733 is greater than 20542834 is greater than 20542935 is greater than 20543036 is greater than 20543137 is greater than 20543238 is greater than 20543339 is greater than 205434*******************5435*** Nested WHILEs ***5436Each array variable should be equal to the sum of its indices:5437${test00}[0] = 05438${test00}[1] = 15439${test00}[2] = 25440${test01}[0] = 15441${test01}[1] = 25442${test01}[2] = 35443${test02}[0] = 25444${test02}[1] = 35445${test02}[2] = 45446${test10}[0] = 15447${test10}[1] = 25448${test10}[2] = 35449${test11}[0] = 25450${test11}[1] = 35451${test11}[2] = 45452${test12}[0] = 35453${test12}[1] = 45454${test12}[2] = 55455${test20}[0] = 25456${test20}[1] = 35457${test20}[2] = 45458${test21}[0] = 35459${test21}[1] = 45460${test21}[2] = 55461${test22}[0] = 45462${test22}[1] = 55463${test22}[2] = 65464*********************5465*** hash test... ***5466commented out...5467**************************5468*** Hash resizing test ***5469ba5470baa5471baaa5472baaaa5473baaaaa5474baaaaaa5475baaaaaaa5476baaaaaaaa5477baaaaaaaaa5478baaaaaaaaaa5479ba5480105481baa548295483baaa548485485baaaa548675487baaaaa548865489baaaaaa549055491baaaaaaa549245493baaaaaaaa549435495baaaaaaaaa549625497baaaaaaaaaa549815499**************************5500*** break/continue test ***5501$i should go from 0 to 25502$j should go from 3 to 4, and $q should go from 3 to 45503 $j=35504 $q=35505 $q=45506 $j=45507 $q=35508 $q=45509$j should go from 0 to 25510 $j=05511 $j=15512 $j=25513$k should go from 0 to 25514 $k=05515 $k=15516 $k=25517$i=05518$j should go from 3 to 4, and $q should go from 3 to 45519 $j=35520 $q=35521 $q=45522 $j=45523 $q=35524 $q=45525$j should go from 0 to 25526 $j=05527 $j=15528 $j=25529$k should go from 0 to 25530 $k=05531 $k=15532 $k=25533$i=15534$j should go from 3 to 4, and $q should go from 3 to 45535 $j=35536 $q=35537 $q=45538 $j=45539 $q=35540 $q=45541$j should go from 0 to 25542 $j=05543 $j=15544 $j=25545$k should go from 0 to 25546 $k=05547 $k=15548 $k=25549$i=25550***********************5551*** Nested file include test ***5552<html>5553This is Finish.phtml. This file is supposed to be included5554from regression_test.phtml. This is normal HTML.5555and this is PHP code, 2+2=45556</html>5557********************************5558Tests completed.5559<html>5560<head>5561*** Testing assignments and variable aliasing: ***5562This should read "blah": blah5563This should read "this is nifty": this is nifty5564*************************************************5565*** Testing integer operators ***5566Correct result - 8: 85567Correct result - 8: 85568Correct result - 2: 25569Correct result - -2: -25570Correct result - 15: 155571Correct result - 15: 155572Correct result - 2: 25573Correct result - 3: 35574*********************************5575*** Testing real operators ***5576Correct result - 8: 85577Correct result - 8: 85578Correct result - 2: 25579Correct result - -2: -25580Correct result - 15: 155581Correct result - 15: 155582Correct result - 2: 25583Correct result - 3: 35584*********************************5585*** Testing if/elseif/else control ***5586This works5587this_still_works5588should_print5589*** Seriously nested if's test ***5590** spelling correction by kluzz **5591Only two lines of text should follow:5592this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=05593this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=455943 loop iterations should follow:55952 455963 455974 45598**********************************5599*** C-style else-if's ***5600This should be displayed5601*************************5602*** WHILE tests ***56030 is smaller than 2056041 is smaller than 2056052 is smaller than 2056063 is smaller than 2056074 is smaller than 2056085 is smaller than 2056096 is smaller than 2056107 is smaller than 2056118 is smaller than 2056129 is smaller than 20561310 is smaller than 20561411 is smaller than 20561512 is smaller than 20561613 is smaller than 20561714 is smaller than 20561815 is smaller than 20561916 is smaller than 20562017 is smaller than 20562118 is smaller than 20562219 is smaller than 20562320 equals 20562421 is greater than 20562522 is greater than 20562623 is greater than 20562724 is greater than 20562825 is greater than 20562926 is greater than 20563027 is greater than 20563128 is greater than 20563229 is greater than 20563330 is greater than 20563431 is greater than 20563532 is greater than 20563633 is greater than 20563734 is greater than 20563835 is greater than 20563936 is greater than 20564037 is greater than 20564138 is greater than 20564239 is greater than 205643*******************5644*** Nested WHILEs ***5645Each array variable should be equal to the sum of its indices:5646${test00}[0] = 05647${test00}[1] = 15648${test00}[2] = 25649${test01}[0] = 15650${test01}[1] = 25651${test01}[2] = 35652${test02}[0] = 25653${test02}[1] = 35654${test02}[2] = 45655${test10}[0] = 15656${test10}[1] = 25657${test10}[2] = 35658${test11}[0] = 25659${test11}[1] = 35660${test11}[2] = 45661${test12}[0] = 35662${test12}[1] = 45663${test12}[2] = 55664${test20}[0] = 25665${test20}[1] = 35666${test20}[2] = 45667${test21}[0] = 35668${test21}[1] = 45669${test21}[2] = 55670${test22}[0] = 45671${test22}[1] = 55672${test22}[2] = 65673*********************5674*** hash test... ***5675commented out...5676**************************5677*** Hash resizing test ***5678ba5679baa5680baaa5681baaaa5682baaaaa5683baaaaaa5684baaaaaaa5685baaaaaaaa5686baaaaaaaaa5687baaaaaaaaaa5688ba5689105690baa569195692baaa569385694baaaa569575696baaaaa569765698baaaaaa569955700baaaaaaa570145702baaaaaaaa570335704baaaaaaaaa570525706baaaaaaaaaa570715708**************************5709*** break/continue test ***5710$i should go from 0 to 25711$j should go from 3 to 4, and $q should go from 3 to 45712 $j=35713 $q=35714 $q=45715 $j=45716 $q=35717 $q=45718$j should go from 0 to 25719 $j=05720 $j=15721 $j=25722$k should go from 0 to 25723 $k=05724 $k=15725 $k=25726$i=05727$j should go from 3 to 4, and $q should go from 3 to 45728 $j=35729 $q=35730 $q=45731 $j=45732 $q=35733 $q=45734$j should go from 0 to 25735 $j=05736 $j=15737 $j=25738$k should go from 0 to 25739 $k=05740 $k=15741 $k=25742$i=15743$j should go from 3 to 4, and $q should go from 3 to 45744 $j=35745 $q=35746 $q=45747 $j=45748 $q=35749 $q=45750$j should go from 0 to 25751 $j=05752 $j=15753 $j=25754$k should go from 0 to 25755 $k=05756 $k=15757 $k=25758$i=25759***********************5760*** Nested file include test ***5761<html>5762This is Finish.phtml. This file is supposed to be included5763from regression_test.phtml. This is normal HTML.5764and this is PHP code, 2+2=45765</html>5766********************************5767Tests completed.5768<html>5769<head>5770*** Testing assignments and variable aliasing: ***5771This should read "blah": blah5772This should read "this is nifty": this is nifty5773*************************************************5774*** Testing integer operators ***5775Correct result - 8: 85776Correct result - 8: 85777Correct result - 2: 25778Correct result - -2: -25779Correct result - 15: 155780Correct result - 15: 155781Correct result - 2: 25782Correct result - 3: 35783*********************************5784*** Testing real operators ***5785Correct result - 8: 85786Correct result - 8: 85787Correct result - 2: 25788Correct result - -2: -25789Correct result - 15: 155790Correct result - 15: 155791Correct result - 2: 25792Correct result - 3: 35793*********************************5794*** Testing if/elseif/else control ***5795This works5796this_still_works5797should_print5798*** Seriously nested if's test ***5799** spelling correction by kluzz **5800Only two lines of text should follow:5801this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=05802this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=458033 loop iterations should follow:58042 458053 458064 45807**********************************5808*** C-style else-if's ***5809This should be displayed5810*************************5811*** WHILE tests ***58120 is smaller than 2058131 is smaller than 2058142 is smaller than 2058153 is smaller than 2058164 is smaller than 2058175 is smaller than 2058186 is smaller than 2058197 is smaller than 2058208 is smaller than 2058219 is smaller than 20582210 is smaller than 20582311 is smaller than 20582412 is smaller than 20582513 is smaller than 20582614 is smaller than 20582715 is smaller than 20582816 is smaller than 20582917 is smaller than 20583018 is smaller than 20583119 is smaller than 20583220 equals 20583321 is greater than 20583422 is greater than 20583523 is greater than 20583624 is greater than 20583725 is greater than 20583826 is greater than 20583927 is greater than 20584028 is greater than 20584129 is greater than 20584230 is greater than 20584331 is greater than 20584432 is greater than 20584533 is greater than 20584634 is greater than 20584735 is greater than 20584836 is greater than 20584937 is greater than 20585038 is greater than 20585139 is greater than 205852*******************5853*** Nested WHILEs ***5854Each array variable should be equal to the sum of its indices:5855${test00}[0] = 05856${test00}[1] = 15857${test00}[2] = 25858${test01}[0] = 15859${test01}[1] = 25860${test01}[2] = 35861${test02}[0] = 25862${test02}[1] = 35863${test02}[2] = 45864${test10}[0] = 15865${test10}[1] = 25866${test10}[2] = 35867${test11}[0] = 25868${test11}[1] = 35869${test11}[2] = 45870${test12}[0] = 35871${test12}[1] = 45872${test12}[2] = 55873${test20}[0] = 25874${test20}[1] = 35875${test20}[2] = 45876${test21}[0] = 35877${test21}[1] = 45878${test21}[2] = 55879${test22}[0] = 45880${test22}[1] = 55881${test22}[2] = 65882*********************5883*** hash test... ***5884commented out...5885**************************5886*** Hash resizing test ***5887ba5888baa5889baaa5890baaaa5891baaaaa5892baaaaaa5893baaaaaaa5894baaaaaaaa5895baaaaaaaaa5896baaaaaaaaaa5897ba5898105899baa590095901baaa590285903baaaa590475905baaaaa590665907baaaaaa590855909baaaaaaa591045911baaaaaaaa591235913baaaaaaaaa591425915baaaaaaaaaa591615917**************************5918*** break/continue test ***5919$i should go from 0 to 25920$j should go from 3 to 4, and $q should go from 3 to 45921 $j=35922 $q=35923 $q=45924 $j=45925 $q=35926 $q=45927$j should go from 0 to 25928 $j=05929 $j=15930 $j=25931$k should go from 0 to 25932 $k=05933 $k=15934 $k=25935$i=05936$j should go from 3 to 4, and $q should go from 3 to 45937 $j=35938 $q=35939 $q=45940 $j=45941 $q=35942 $q=45943$j should go from 0 to 25944 $j=05945 $j=15946 $j=25947$k should go from 0 to 25948 $k=05949 $k=15950 $k=25951$i=15952$j should go from 3 to 4, and $q should go from 3 to 45953 $j=35954 $q=35955 $q=45956 $j=45957 $q=35958 $q=45959$j should go from 0 to 25960 $j=05961 $j=15962 $j=25963$k should go from 0 to 25964 $k=05965 $k=15966 $k=25967$i=25968***********************5969*** Nested file include test ***5970<html>5971This is Finish.phtml. This file is supposed to be included5972from regression_test.phtml. This is normal HTML.5973and this is PHP code, 2+2=45974</html>5975********************************5976Tests completed.5977<html>5978<head>5979*** Testing assignments and variable aliasing: ***5980This should read "blah": blah5981This should read "this is nifty": this is nifty5982*************************************************5983*** Testing integer operators ***5984Correct result - 8: 85985Correct result - 8: 85986Correct result - 2: 25987Correct result - -2: -25988Correct result - 15: 155989Correct result - 15: 155990Correct result - 2: 25991Correct result - 3: 35992*********************************5993*** Testing real operators ***5994Correct result - 8: 85995Correct result - 8: 85996Correct result - 2: 25997Correct result - -2: -25998Correct result - 15: 155999Correct result - 15: 156000Correct result - 2: 26001Correct result - 3: 36002*********************************6003*** Testing if/elseif/else control ***6004This works6005this_still_works6006should_print6007*** Seriously nested if's test ***6008** spelling correction by kluzz **6009Only two lines of text should follow:6010this should be displayed. should be: $i=1, $j=0. is: $i=1, $j=06011this is supposed to be displayed. should be: $i=2, $j=4. is: $i=2, $j=460123 loop iterations should follow:60132 460143 460154 46016**********************************6017*** C-style else-if's ***6018This should be displayed6019*************************6020*** WHILE tests ***60210 is smaller than 2060221 is smaller than 2060232 is smaller than 2060243 is smaller than 2060254 is smaller than 2060265 is smaller than 2060276 is smaller than 2060287 is smaller than 2060298 is smaller than 2060309 is smaller than 20603110 is smaller than 20603211 is smaller than 20603312 is smaller than 20603413 is smaller than 20603514 is smaller than 20603615 is smaller than 20603716 is smaller than 20603817 is smaller than 20603918 is smaller than 20604019 is smaller than 20604120 equals 20604221 is greater than 20604322 is greater than 20604423 is greater than 20604524 is greater than 20604625 is greater than 20604726 is greater than 20604827 is greater than 20604928 is greater than 20605029 is greater than 20605130 is greater than 20605231 is greater than 20605332 is greater than 20605433 is greater than 20605534 is greater than 20605635 is greater than 20605736 is greater than 20605837 is greater than 20605938 is greater than 20606039 is greater than 206061*******************6062*** Nested WHILEs ***6063Each array variable should be equal to the sum of its indices:6064${test00}[0] = 06065${test00}[1] = 16066${test00}[2] = 26067${test01}[0] = 16068${test01}[1] = 26069${test01}[2] = 36070${test02}[0] = 26071${test02}[1] = 36072${test02}[2] = 46073${test10}[0] = 16074${test10}[1] = 26075${test10}[2] = 36076${test11}[0] = 26077${test11}[1] = 36078${test11}[2] = 46079${test12}[0] = 36080${test12}[1] = 46081${test12}[2] = 56082${test20}[0] = 26083${test20}[1] = 36084${test20}[2] = 46085${test21}[0] = 36086${test21}[1] = 46087${test21}[2] = 56088${test22}[0] = 46089${test22}[1] = 56090${test22}[2] = 66091