Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
class MyClass
3
{
4
    public static function func1()
5
    {
6
        $value = 'hello';
7
        $newValue = array($this->func2());
8
        $result = $this->getValue($value);
9
        return $this->setValue($result);
10
    }
11
 
12
    public function func1()
13
    {
14
        $value = 'hello';
15
        $newValue = array($this->func2());
16
        $result = $this->getValue($value);
17
        return $this->setValue($result);
18
    }
19
 
20
    function func1()
21
    {
22
        $value = 'hello';
23
        $newValue = array($this->func2());
24
        $result = $this->getValue($value);
25
        return $this->setValue($result);
26
    }
27
}
28
?>