本文整理汇总了PHP中student::display方法的典型用法代码示例。如果您正苦于以下问题:PHP student::display方法的具体用法?PHP student::display怎么用?PHP student::display使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类student
的用法示例。
在下文中一共展示了student::display方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: total
include 'per_interface.php';
class student implements per
{
private $sub1;
private $sub2;
private $sub3;
function __construct($a, $b, $c)
{
$this->sub1 = $a;
$this->sub2 = $b;
$this->sub3 = $c;
}
function total()
{
$total = $this->sub1 + $this->sub2 + $this->sub3;
return $total;
}
function per()
{
$per = $this->total() / 3;
return $per;
}
function display()
{
echo "The percentage score is " . $this->per();
}
}
$stud1 = new student(12, 12, 12);
$stud1->display();