Created
June 18, 2017 22:44
Revisions
-
bigkiandi created this gist
Jun 18, 2017 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ <?php // buat class komputer class komputer { // property dengan hak akses protected protected $jenis_processor = "Intel Core i7-4790 3.6Ghz"; } // buat class laptop class laptop extends komputer{ public function tampilkan_processor() { return $this->jenis_processor; } } // buat objek dari class laptop (instansiasi) $laptop_baru = new laptop(); // jalankan method echo $laptop_baru->tampilkan_processor(); ?> This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ <?php class leptop { // buat properti untuk class leptop var $pimilik // buat method function idupinLeptop() { return "NYALA"; } } // buat object dari class leptop $leptop_andi = new leptop(); // set property $leptop_andi->pemilik = "ANDI"; // tampilkan property di browser echo $leptop_andi->pemilik; echo $leptop_andi->idupinLeptop();