-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudent.php
More file actions
58 lines (52 loc) · 1.28 KB
/
Student.php
File metadata and controls
58 lines (52 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/*
Student class
*/
class Student {
/*
* Constructor for the student class.
*/
function __construct() {
$this->surname = '';
$this->first_name = '';
$this->emails = array();
$this->grades = array();
}
/*
* Adds an email to the Student object.
* $which is the key in the associative array eg. workemail
* $address is the email address eg. address@website.com
*/
function add_email($which, $address) {
$this->emails[$which] = $address;
}
/*
* Inserts a grade to the Student object's grades.
*/
function add_grade($grade) {
$this->grades[] = $grade;
}
/*
* Calculates the Student's average grade.
*/
function average() {
$total = 0;
foreach ($this->grades as $value) {
$total += $value;
}
return $total / count($this->grades);
}
/*
* Returns a string description of the Student object
*/
function toString() {
$result = $this->first_name . ' ' . $this->surname;
$result .= ' (' . $this->average() . ")\n";
foreach ($this->emails as $which=>$what) {
$result .= $which . ": $what\n";
}
$result .= "\n";
return "<pre>$result</pre>";
}
}
?>