Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
 
4
function func1()
5
{
6
 
7
}//end func1()
8
 
9
 
10
function func1() {
11
 
12
}//end func1()
13
 
14
 
15
class MyClass
16
{
17
 
18
 
19
    private function func1()
20
    {
21
 
22
    }//end func1()
23
 
24
 
25
    public function func1() {
26
 
27
    }//end func1()
28
 
29
 
30
}//end class
31
 
32
 
33
abstract class MyClass
34
{
35
 
36
 
37
    abstract function func1();
38
 
39
 
40
    public function func1() {
41
 
42
    }//end func1()
43
 
44
 
45
}//end class
46
 
47
 
48
interface MyInterface
49
{
50
 
51
 
52
    function func1();
53
 
54
 
55
    function func2() ;
56
 
57
 
58
}//end interface
59
 
60
function recurseCreateTree(
61
    array $flatList,
62
    $markup,
63
    $lastOffset=0
64
) {
65
}
66
?>