-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudent.php
More file actions
52 lines (42 loc) · 1.27 KB
/
Copy pathStudent.php
File metadata and controls
52 lines (42 loc) · 1.27 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
<?php
/**
* A class that represents a student, their
* grades and their contact info.
*
* @author Chris Klassen
*/
class Student {
// Construct the student object
function _construct() {
$this->surname = '';
$this->first_name = '';
$this->emails = array();
$this->grades = array();
}
// Set the student's email
function add_email($which, $address) {
$this->emails[$which] = $address;
}
// Set the student's grade
function add_grade($grade) {
$this->grades[] = $grade;
}
// Compute the student's average mark
function average() {
$total = 0;
foreach($this->grades as $value)
$total += $value;
return $total / count($this->grades);
}
// Print the student's details
function toString() {
// Add the student name to the string
$result = $this->first_name . ' ' . $this->surname;
$result .= ' (' . $this->average() . ")\n";
// Loop through all student emails and add them to the string
foreach($this->emails as $which => $what)
$result .= $which . ': ' . $what . "\n";
$result .= "\n";
return '<pre>' . $result . "</pre>";
}
}