fork download
  1. <?php
  2. class Shopping {
  3. var $item = "コンピュータ";
  4. var $price = 99800;
  5.  
  6. function getTotal() {
  7. $tax = $this->price * 0.05;
  8. return $this->price + $tax; // 税込価格の設定
  9. }
  10. }
  11.  
  12. $result = new Shopping();
  13. $item = $result->item;
  14. print("$item の会計は".$result->getTotal()."円になります\n");
  15. ?>
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
コンピュータ の会計は104790円になります