php trait示例代码
代码语言:phpcli
所属分类:通讯
代码描述:php trait示例代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<?php // 税的计算处理 trait TaxCalculator { private $price; // 价格 private $tax = 0.08; // 税收 // 返还含税的价格 public function taxIncluded() { return $this->price * (1 + $this->tax); } } // 表示book类的信息 class Book { use TaxCalculator; public $title; // 标题 public $author; // 作者 public function __construct($price, $title, $author) { $this->price = $price; $this->title = $title; $this->author = $author; } } // 表示pen类的信息 class Pen { use TaxCalculator; publi.........完整代码请登录后点击上方下载按钮下载查看
网友评论0