Hallo,
Vielleicht kann hier jemand, der bspw. ohne Klassen garnicht leben könnte mal erklären, was daran so toll sein soll (in PHP als Webapplikation).
das Gegeteil werde ich mal tun:
Es ist absolut egal, ob Du...
class obj{
function n1(){
$this->wichtig1=1;
}
function n2(){
if($this->wichtig1==1)
$this->wichtig2=2;
}
}
...notierst, oder so...
function n1(){
$wichtig1=1;
}
function n2(){
global $wichtig1;
if($wichtig1==1)
$wichtig2=2;
}
...vorgehst. Es gibt keinerlei Einsatzgebiete (also nicht nur Webapplikationen), wo auf Objekte nicht verzichtet werden könnte.
Gruß aus Berlin!
eddi