~ubuntu-branches/ubuntu/breezy/php5/breezy-security

« back to all changes in this revision

Viewing changes to tests/testarray

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-10-09 03:14:32 UTC
  • Revision ID: james.westby@ubuntu.com-20051009031432-kspik3lobxstafv9
Tags: upstream-5.0.5
ImportĀ upstreamĀ versionĀ 5.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This is a small test....
 
2
<?
 
3
 
 
4
/*
 
5
 * this is a multiline comment...
 
6
 */
 
7
 
 
8
for ($j=0; $j<=20; $j++) {
 
9
        for ($i[0][0]=0; $i[0][0]<10000; $i[0][0]++) {
 
10
                $i[1] += $i[0][0];  // this is a single line comment
 
11
        }
 
12
}
 
13
 
 
14
/* this is another multi
 
15
line
 
16
                comment...******
 
17
/
 
18
*/
 
19
 
 
20
print $i[1]."\n";
 
21