Bazı arkadaşlar mesaj atıyorlar dersin kodları için buyrun derste uyguladığımız dersin kodları aşağıdadır.

<?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();

?>