Subversion Repositories Applications.framework

Rev

Rev 5 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 aurelien 1
<?php
2
 
3
if ($something) echo 'hello';
4
 
5
if ($something) {
6
    echo 'hello';
7
} else echo 'hi';
8
 
9
if ($something) {
10
    echo 'hello';
11
} else if ($else) echo 'hi';
12
 
13
foreach ($something as $thing) echo 'hello';
14
 
15
for ($i; $i > 0; $i--) echo 'hello';
16
 
17
while ($something) echo 'hello';
18
 
19
do {
20
    $i--;
21
} while ($something);
22
 
23
if(true)
24
  $someObject->{$name};
25
 
26
?>