iT邦幫忙

2022 iThome 鐵人賽

DAY 15
0

這個算是工作之後”多人共筆”~
會用到的狀況XD

https://ithelp.ithome.com.tw/upload/images/20220915/20119035fizVRpZtpy.png

<!DOCTYPE html> 
<html>
  <head>
    <meta charset="utf-8">
  </head>
  <body>
    <?php
      class Payrule
      {
        public $Name;
        public function Payment($Hours, $Money)
        {
          return $Hours * $Money;
        } 
      }
      class BonusPayrule extends Payrule
      {
        public function Payment($Hours, $Money)		
        {
          return $Hours * $Money + 6000;
        }
      }
      $Obj1 = new Payrule();
	  $Obj2 = new BonusPayrule();
      echo '尚未加上獎金的money為'.$Obj1->Payment(500, 80).'<br>';
      echo '加上獎金之後的money為'.$Obj2->Payment(500, 80).'<br>';
    ?>
  </body>
</html>

目前是寫在一個檔案~
實際應用上會是多個檔案~

在JAVA就是import

天氣涼涼的就會愛睏~居然才過一半>”<


上一篇
DAY14-讀取txt檔資料
下一篇
Day16-網頁之間的傳遞資訊
系列文
Collage版的web寫法就是大雜燴30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言