- 53 名前:nobodyさん mailto:sage [2009/03/10(火) 11:54:07 ID:???]
- <?
class greeting{ function hello(){ return "こんにちは"; } function goodevening(){ return "こんばんは"; } } class bibiru extends greeting{ function goodevening(){ return "こんばんみ"; } } class arare extends greeting{ function hello(){ return "んちゃ"; } } $bibiru = new bibiru(); echo $bibiru->hello()." ".$bibiru->goodevening()."<br>"; $arare = new arare(); echo $arare->hello()." ".$arare->goodevening()."<br>"; ?>
|

|