php-src/tests/testarray
Andi Gutmans 96a19593b2 - Internal functions which are basic language functions should be in Zend
and not in PHP. I.e. strlen(), each(), error_reporting(), count(),
  get_class_name().
1999-09-20 16:56:02 +00:00

21 lines
284 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";