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
// Some code goes here.
4
 
5
// This comment contains # multiple
6
// hash signs (#).
7
 
8
/*
9
 * Here is a small function comment.
10
 */
11
function test()
12
{
13
    // Some code goes here.
14
 
15
    # This comment is banned.
16
 
17
}//end test()
18
 
19
/*
20
    A longer comment goes here.
21
    It spans multiple lines.
22
*/
23
 
24
# This is a long comment
25
# that is banned.
26
 
27
?>