mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
22 lines
285 B
Plaintext
22 lines
285 B
Plaintext
|
|
This is a small test...
|
|
|
|
<?
|
|
/*
|
|
* this is a multiline comment...
|
|
*/
|
|
|
|
//for ($j=0; $j<=200; $j++) {
|
|
for ($i[0][0]=0; $i[0][0]<10000; $i[0][0]++) {
|
|
$i[1] += $i[0][0]; // this is a single line comment
|
|
}
|
|
//}
|
|
|
|
/* this is another multi
|
|
line
|
|
comment...******
|
|
/
|
|
*/
|
|
|
|
print $i[1]."\n";
|