<?php class artikYilKontrol{ var $yil; var $deger; function artikYilmi(){ if(($this->yil % 400) == 0){ $this->deger=true; return $this; }else if(($this->yil % 100) == 0){ $this->deger=false; return $this; }else if(($this->yil % 4) == 0){ $this->deger=true; return $this; }else{ $this->deger=false; return $this; } } function yazdir(){ header('Content-Type: text/html; charset=utf-8'); if($this->deger == true){ echo "Artık Yıl<br>"; }else{ echo "Artık Yıl Değil<br>"; } } } $a = new artikYilKontrol(); $a->yil=1999; $a->artikYilmi()->yazdir(); $a->yil=2000; $a->artikYilmi()->yazdir(); ?>
Çıktısı
Artık Yıl Değil Artık Yıl