This option will reset the home page of Vembazax restoring closed widgets and categories.

Reset Vembazax homepage

Object mobil dengan PHP

kali ini saya akan membuat contoh pembuatan object mobil.
object mobil punya identitas warna, merek dan type.
object mobil juga dilengkapi fungsi injek_gas untuk menambah kecapatan, dan injek_rem untuk mengurangi kecepatan, dan fungsi kencengnya untuk mengetahui kecepatan.
melalui kode ini diharapkan teman2 yang ingin belajar OOP di PHP bisa melihat contoh sederhana penggunaan OOP.
langsung ke codenya

<?php
class mobil {
	public $warna;
	public $merek;
	public $model;
	private $_kenceng = 0;
	public function injekGas() {
		if ( $this->_kenceng >= 120 ) return false;
		$this->_kenceng += 10;
		return true;
	}
	public function injekRem() {
		if ( $this->_kenceng <= 0 ) return false;
		$this->_kenceng -= 10;
		return true;
	}
	public function kencengnya() {
		return $this->_kenceng;
	}
}
$myCar = new mobil();
$myCar->warna = "merah";
$myCar->merek = "Toyota";
$myCar->model = "kijang";
echo "<p> aku mengendarai sebuah $myCar->merek $myCar->model berwarna $myCar->color.</p>";
echo "<p>kalo pedal gas di injek...<br />";
while ( $myCar->injekGas() ) {
	echo "kecepatan sekarang: ". $myCar->kencengnya() . "kmpj<br />";
}
echo "</p><p>kecepatan mentok! sekarang injek rem untuk menguragi kecepatan...<br />";
while ( $myCar->injekRem() ) {
	echo "kecepatan sekarang: ". $myCar->kencengnya() . "kmpj<br />";
}
echo "</p><p> berenti dah !</p>";
?>

keterangan:
kode aslinya ada di buku beginning PHP 5.3 penulisnya matt doyle.



Twitter

LauryVale_10Sat, 19 May 2012 14:14:06 +0000
Hahaha muy cierto XD http://t.co/o6SVk7w2
stevenkoh88Sat, 19 May 2012 14:14:06 +0000
Taiwan"s largest salt sculpture unveiled in southern Taiwan: Taipei, May 19 (CNA) A 5-meter-tall salt sculpture... http://t.co/Mgi92QaI
chander_vikasSat, 19 May 2012 14:14:06 +0000
These r the wonderful pairs in this world...heart &beats..night & moon..birds & songs..Roses &love..my message... http://t.co/JZ42ppWb
liga_eSat, 19 May 2012 14:14:06 +0000
Quale cantante eliminate??( Avete 5 minuti ) http://t.co/9bKQHhCB
hkjtodaySat, 19 May 2012 14:14:06 +0000
الأميرة عالية الطباع ترعى مهرجان الحملة الوطنية لتشجيع القراءة http://t.co/RL1GhHbV #amman #jo #jordan
BMWLandSat, 19 May 2012 14:14:06 +0000
#bmwland angel eyes...where to get them?: Hello.I"m looking at having angel eyes fitted to my E91....can someone... http://t.co/4wIYAvht
themaleante_Sat, 19 May 2012 14:14:06 +0000
Buen Diaaaaaaa :DQue tal amanecieron?? -o-Que tengan un exelente sabadito alegre, ba?ate mi amor ponte beia que... http://t.co/ueRaQb3X
miyake_michi191Sat, 19 May 2012 14:14:06 +0000
無料公開::::♂♀無限大の法則 ⇒ http://t.co/OB6zLAhu
anbakarasSat, 19 May 2012 14:14:06 +0000
قداس ابونا بيشوي القمص لوقا: http://t.co/ldGZVJpi http://t.co/K34dGsuR
10020703228Sat, 19 May 2012 14:14:06 +0000
第二弾 ツイッター、アフェリエイトで稼ぐ http://t.co/DIHSLh6p
hayanalimaSat, 19 May 2012 14:14:06 +0000
Saudades Vô!11 anos sem a sua presença...Saudade do carinho que você tinha com os seus netos,Saudade dos... http://t.co/tKYLFV8b
AbbyCasey1Sat, 19 May 2012 14:14:06 +0000
Malcolm X Closing Day of school must end up being fun. http://t.co/f5cbFy59
manee27805696Sat, 19 May 2012 14:14:06 +0000
The "Service center" collection in Big Business has been completed! 66 http://t.co/Ypsnjo0q #android #gameinsight #androidgames
theprophetamongSat, 19 May 2012 14:14:06 +0000
مَسآء التوكّل علىَ منْ لآيخيبَ الرجَاءْ به . . ♥أذكار المساء:::1- أَمْسَيْـنا وَأَمْسـى المـلكُ لله وَالحَمدُ... http://t.co/RW6FW2ef
TheWatchDawgSat, 19 May 2012 14:14:06 +0000
Attorney Victoria Grant of Albuquerque, NM; Judge Roy Bean Wannabeehttp://t.co/3XER3j9r

Powered by WordPress SEO Tools


Leave a Reply