Zitat von eazy2011
Beitrag anzeigen
Wenn du meinst, dass Objekte einer Klasse zu komplex werden, bleiben also nur noch Arrays, allerdings hatte ich es so verstanden, dass dein Chef dir diese (warum auch immer) verboten hat. Allerdings ist wirklich nicht viel dazu:
PHP-Code:
class Equation {
public $leftOperand;
public $rightOperand;
public $operator;
public $result;
}
PHP-Code:
$eq = new Equation();
$eq->leftOperand = 3;
$eq->rightOperand = 4;
$eq->operator = "*";
$eq->result = 12;
Kommentar