so habe ein paar korrekturen und anpassungen vorgenommen. instanceof und type hinting sind jetzt auch dabei.
gruß
peter
gruß
peter
class Mensch
{
private $gewaschen;
private function koerperpflege ($wert)
{
$this -> gewaschen = $wert;
return $this -> gewaschen;
}
public function returnPflege ($wert)
{
$value = $this -> koerperpflege = $wert;
return $value;
}
}
class MyClass
{
public $blubb = 'blubber';
public $schwall = 'laber';
public $jodelblah = 'Hollahihü';
protected $finger_wech = 'geht dich nichts an';
private $nee_is_nich = 'das hier auch nicht';
function iterateVisible()
{
foreach($this as $key => $value)
{
print $key.'-'.$value.'<br>';
}
}
}
foreach ($vars as $key => $value)
{
echo $key.'-'.$value.'<br>';
}
$vars -> iterateVisible();
foreach($frau->getHandTasche() as $key => $value){
}
Kommentar