kann man eine instant einer klasse direct mit array push erzeugen?
Bsp:
array_push($this->element, new Input());
hab nun eine temporäre variable eingeführt udn dann gehts!
$temp_obj= new Input();
array_push($this->element, $temp_obj);
unset ($temp_obj);
??
ist dies in dieser form möglich?
also falls dass mal wer benötigt es ist möglich!