function Student::to_string

6.x Student.php Student::to_string()

File

classes/Student.php, line 922

Class

Student

Code

function to_string() {
  $rtn = "Student Information:\n";
  $rtn .= " Courses Taken:\n";
  $rtn .= $this->list_courses_taken->to_string();
  return $rtn;
}