1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
<html>
<head>
<?php
/* the point of this file is to intensively test various aspects of
* the parser. right now, each test focuses in one aspect only
* (e.g. variable aliasing, arithemtic operator, various control
* structures), while trying to combine code from other parts of the
* parser as well.
*/
?>
*** Testing assignments and variable aliasing: ***<br>
<?php
/* This test tests assignments to variables using other variables as variable-names */
$a = "b";
$$a = "test";
$$$a = "blah";
${$$$a}["associative arrays work too"] = "this is nifty";
?>
This should read "blah": <?php echo "$test<br>\n"; ?>
This should read "this is nifty": <?php echo $blah[$test="associative arrays work too"]."<br>\n"; ?>
*************************************************<br>
*** Testing integer operators ***<br>
<?php
/* test just about any operator possible on $i and $j (ints) */
$i = 5;
$j = 3;
?>
Correct result - 8: <?php echo $i+$j; ?><br>
Correct result - 8: <?php echo $i+$j; ?><br>
Correct result - 2: <?php echo $i-$j; ?><br>
Correct result - -2: <?php echo $j-$i; ?><br>
Correct result - 15: <?php echo $i*$j; ?><br>
Correct result - 15: <?php echo $j*$i; ?><br>
Correct result - 2: <?php echo $i%$j; ?><br>
Correct result - 3: <?php echo $j%$i; ?><br>
*********************************<br>
*** Testing real operators ***<br>
<?php
/* test just about any operator possible on $i and $j (floats) */
$i = 5.0;
$j = 3.0;
?>
Correct result - 8: <?php echo $i+$j; ?><br>
Correct result - 8: <?php echo $i+$j; ?><br>
Correct result - 2: <?php echo $i-$j; ?><br>
Correct result - -2: <?php echo $j-$i; ?><br>
Correct result - 15: <?php echo $i*$j; ?><br>
Correct result - 15: <?php echo $j*$i; ?><br>
Correct result - 2: <?php echo $i%$j; ?><br>
Correct result - 3: <?php echo $j%$i; ?><br>
*********************************<br>
*** Testing if/elseif/else control ***<br>
<?php
/* sick if/elseif/else test by Andi :) */
$a = 5;
if ($a == "4") {
echo "This "." does "." not "." work<br>\n";
} elseif ($a == "5") {
echo "This "." works<br>\n";
$a = 6;
if ("andi" == ($test = "andi")) {
echo "this_still_works<br>\n";
} elseif (1) {
echo "should_not_print<br>\n";
} else {
echo "should_not_print<br>\n";
}
if (44 == 43) {
echo "should_not_print<br>\n";
} else {
echo "should_print<br>\n";
}
} elseif ($a == 6) {
echo "this "."broken<br>\n";
if (0) {
echo "this_should_not_print<br>\n";
} else {
echo "TestingDanglingElse_This_Should_not_print<br>\n";
}
} else {
echo "This "."does "." not"." work<br>\n";
}
?>
*** Seriously nested if's test ***<br>
** spelling correction by kluzz **
<?php
/* yet another sick if/elseif/else test by Zeev */
$i=$j=0;
echo "Only two lines of text should follow:<br>\n";
if (0) { /* this code is not supposed to be executed */
echo "hmm, this shouldn't be displayed #1<br>\n";
$j++;
if (1) {
$i
+=
$j;
if (0) {
$j = ++$i;
if (1) {
$j *= $i;
echo "damn, this shouldn't be displayed<br>\n";
} else {
$j /= $i;
++$j;
echo "this shouldn't be displayed either<br>\n";
}
} elseif (1) {
$i++; $j++;
echo "this isn't supposed to be displayed<br>\n";
}
} elseif (0) {
$i++;
echo "this definitely shouldn't be displayed<br>\n";
} else {
--$j;
echo "and this too shouldn't be displayed<br>\n";
while ($j>0) {
$j--;
}
}
} elseif (2-2) { /* as long as 2-2==0, this isn't supposed to be executed either */
$i = ++$j;
echo "hmm, this shouldn't be displayed #2<br>\n";
if (1) {
$j = ++$i;
if (0) {
$j = $i*2+$j*($i++);
if (1) {
$i++;
echo "damn, this shouldn't be displayed<br>\n";
} else {
$j++;
echo "this shouldn't be displayed either<br>\n";
}
} else if (1) {
++$j;
echo "this isn't supposed to be displayed<br>\n";
}
} elseif (0) {
$j++;
echo "this definitely shouldn't be displayed<br>\n";
} else {
$i++;
echo "and this too shouldn't be displayed<br>\n";
}
} else {
$j=$i++; /* this should set $i to 1, but shouldn't change $j (it's assigned $i's previous values, zero) */
echo "this should be displayed. should be: \$i=1, \$j=0. is: \$i=$i, \$j=$j<br>\n";
if (1) {
$j += ++$i; /* ++$i --> $i==2, $j += 2 --> $j==2 */
if (0) {
$j += 40;
if (1) {
$i += 50;
echo "damn, this shouldn't be displayed<br>\n";
} else {
$j += 20;
echo "this shouldn't be displayed either<br>\n";
}
} else if (1) {
$j *= $i; /* $j *= 2 --> $j == 4 */
echo "this is supposed to be displayed. should be: \$i=2, \$j=4. is: \$i=$i, \$j=$j<br>\n";
echo "3 loop iterations should follow:<br>\n";
while ($i<=$j) {
echo $i++." $j<br>\n";
}
}
} elseif (0) {
echo "this definitely shouldn't be displayed<br>\n";
} else {
echo "and this too shouldn't be displayed<br>\n";
}
echo "**********************************<br>\n";
}
?>
*** C-style else-if's ***<br>
<?php
/* looks like without we even tried, C-style else-if structure works fine! */
if ($a=0) {
echo "This shouldn't be displayed<br>\n";
} else if ($a++) {
echo "This shouldn't be displayed either<br>\n";
} else if (--$a) {
echo "No, this neither<br>\n";
} else if (++$a) {
echo "This should be displayed<br>\n";
} else {
echo "This shouldn't be displayed at all<br>\n";
}
?>
*************************<br>
*** WHILE tests ***<br>
<?php
$i=0;
$j=20;
while ($i<(2*$j)) {
if ($i>$j) {
echo "$i is greater than $j<br>\n";
} else if ($i==$j) {
echo "$i equals $j<br>\n";
} else {
echo "$i is smaller than $j<br>\n";
}
$i++;
}
?>
*******************<br>
*** Nested WHILEs ***<br>
<?php
$arr_len=3;
$i=0;
while ($i<$arr_len) {
$j=0;
while ($j<$arr_len) {
$k=0;
while ($k<$arr_len) {
${"test$i$j"}[$k] = $i+$j+$k;
$k++;
}
$j++;
}
$i++;
}
echo "Each array variable should be equal to the sum of its indices:<br>\n";
$i=0;
while ($i<$arr_len) {
$j=0;
while ($j<$arr_len) {
$k=0;
while ($k<$arr_len) {
echo "\${test$i$j}[$k] = ".${"test$i$j"}[$k]."<br>\n";
$k++;
}
$j++;
}
$i++;
}
?>
*********************<br>
*** hash test... ***<br>
<?php
/*
$i=0;
while ($i<10000) {
$arr[$i]=$i;
$i++;
}
$i=0;
while ($i<10000) {
echo $arr[$i++]."<br>\n";
}
*/
echo "commented out...";
?>
**************************<br>
*** Hash resizing test ***<br>
<?php
$i = 10;
$a = 'b';
while ($i > 0) {
$a = $a . 'a';
echo "$a<br>\n";
$resize[$a] = $i;
$i--;
}
$i = 10;
$a = 'b';
while ($i > 0) {
$a = $a . 'a';
echo "$a<br>\n";
echo $resize[$a]."<br>\n";
$i--;
}
?>
**************************<br>
*** break/continue test ***<br>
<?php
$i=0;
echo "\$i should go from 0 to 2<br>\n";
while ($i<5) {
if ($i>2) {
break;
}
$j=0;
echo "\$j should go from 3 to 4, and \$q should go from 3 to 4<br>\n";
while ($j<5) {
if ($j<=2) {
$j++;
continue;
}
echo " \$j=$j<br>\n";
for ($q=0; $q<=10; $q++) {
if ($q<3) {
continue;
}
if ($q>4) {
break;
}
echo " \$q=$q<br>\n";
}
$j++;
}
$j=0;
echo "\$j should go from 0 to 2<br>\n";
while ($j<5) {
if ($j>2) {
$k=0;
echo "\$k should go from 0 to 2<br>\n";
while ($k<5) {
if ($k>2) {
break 2;
}
echo " \$k=$k<br>\n";
$k++;
}
}
echo " \$j=$j<br>\n";
$j++;
}
echo "\$i=$i<br>\n";
$i++;
}
?>
***********************<br>
*** Nested file include test ***<br>
<?php include("023-2.inc"); ?>
********************************<br>
<?php
{
echo "Tests completed.<br>\n"; # testing some PHP style comment...
}
?>
|