Skip to content

Instantly share code, notes, and snippets.

@ruliarmando
Created May 15, 2013 09:46
Show Gist options
  • Save ruliarmando/5582833 to your computer and use it in GitHub Desktop.
Save ruliarmando/5582833 to your computer and use it in GitHub Desktop.
abstract class using PHP 5
<?php
abstract class Ayam{
public abstract function berjenisKelamin();
}
class AyamJantan extends Ayam{
public function berjenisKelamin(){
echo "jantan";
}
}
class AyamBetina extends Ayam{
public function berjenisKelamin(){
echo "betina";
}
}
$ayamjantan = new AyamJantan();
$ayambetina = new AyamBetina();
$ayam = $ayamjantan;
echo $ayam->berjenisKelamin();
$ayam = $ayambetina;
echo $ayam->berjenisKelamin();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment