Zum Inhalt springen

PHP und Objekte, Objektvariablen, Membervariablen


Empfohlene Beiträge

Warum kommt hier die unten stehende Ausgabe?

class Kalender {
var $nextMonth;
var $lastMonth;
var $actualMonth;

function Kalender() {
$heute = getDate();
$this->$actualMonth = $heute["mon"];
echo $this->$actualMonth. "<br/>";
if ($this->$actualMonth == 12) {
$this->$nextMonth = 1;
}
else $this->$nextMonth = $this->$actualMonth + 1;
echo "actualMonth: " . $this->$actualMonth . ", lastMonth: " . $this->$lastMonth . ", nextMonth: " . $this->$nextMonth . "<br/>";
if ($this->$actualMonth == 1)
$this->$lastMonth = 12;
else $this->$lastMonth = $this->$actualMonth - 1;
echo "actualMonth: " . $this->$actualMonth . ", lastMonth: " . $this->$lastMonth . ", nextMonth: " . $this->$nextMonth;
}
}
$testKalender = new Kalender();
[/PHP]

Ausgabe:

12

actualMonth: 1, lastMonth: 1, nextMonth: 1

actualMonth: 12, lastMonth: 12, nextMonth: 12

Ohne die ganzen "$this->" funktioniert es, allerdings kann ich dann nicht mehr auf die Objektvariablen mittels

[PHP]echo "LAST:" . $testKalender->$lastMonth;

PS: Irgendwie verwirrt mich das, in Java war das alles nicht so kompliziert.

Verwende PHP 4.3.2

Link zu diesem Kommentar
Auf anderen Seiten teilen

Dein Kommentar

Du kannst jetzt schreiben und Dich später registrieren. Wenn Du ein Konto hast, melde Dich jetzt an, um unter Deinem Benutzernamen zu schreiben.

Gast
Auf dieses Thema antworten...

×   Du hast formatierten Text eingefügt.   Formatierung wiederherstellen

  Nur 75 Emojis sind erlaubt.

×   Dein Link wurde automatisch eingebettet.   Einbetten rückgängig machen und als Link darstellen

×   Dein vorheriger Inhalt wurde wiederhergestellt.   Editor leeren

×   Du kannst Bilder nicht direkt einfügen. Lade Bilder hoch oder lade sie von einer URL.

Fachinformatiker.de, 2024 by SE Internet Services

fidelogo_small.png

Schicke uns eine Nachricht!

Fachinformatiker.de ist die größte IT-Community
rund um Ausbildung, Job, Weiterbildung für IT-Fachkräfte.

Fachinformatiker.de App

Download on the App Store
Get it on Google Play

Kontakt

Hier werben?
Oder sende eine E-Mail an

Social media u. feeds

Jobboard für Fachinformatiker und IT-Fachkräfte

×
×
  • Neu erstellen...