pl: Welches Entwurfsmuster steckt in Traits

Beitrag lesen

problematische Seite

warum probierst Du es nicht aus

OK:

trait RSS {
    function _rss() {
        print_r($this);
    }
}

class FF{
    use RSS;
    function construct(){
        $this->DIR = "/";
    }
}

$f = new FF();
$f->_rss();

Warum sehe ich da die Eigenschaft nicht? Per Default ist die public.

MFG