<?php
class ders
{
public $sayi = 100;
function yaz()
{
return $this->sayi;
}
function degistir()
{
$this->sayi = 500;
return $this->yaz();
}
}
$sinif = new ders;
$sinif->sayi = 300;
echo $sinif->yaz();
?> Php Class (Sınıf) Yapısı
9
●1.266
- 03-11-2009, 12:25:09Bazı arkadaşlar mesaj atıyorlar dersin kodları için buyrun derste uyguladığımız dersin kodları aşağıdadır.