本文整理汇总了PHP中School::getCurrentSession方法的典型用法代码示例。如果您正苦于以下问题:PHP School::getCurrentSession方法的具体用法?PHP School::getCurrentSession怎么用?PHP School::getCurrentSession使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类School
的用法示例。
在下文中一共展示了School::getCurrentSession方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addAssessmenth
public function addAssessmenth($teacher_id)
{
$conn = Connection::getInstance("write");
$school = new School($this->school_id);
$command = "INSERT INTO assessment (student_id, class_id, teacher_id, term_id, year)\n VALUES({$this->id}, {$this->class_id}, {$teacher_id}, {$school->getCurrentTermID()},'{$school->getCurrentSession()}')";
return $conn->execInsert($command);
}
示例2: getStudentsIDof
public function getStudentsIDof($year, $term_id)
{
$conn = Connection::getInstance("read");
$school = new School($this->school_id);
if ($year == $school->getCurrentSession()) {
return $this->getStudentsID();
} else {
$command = "SELECT DISTINCT student_id FROM assessment\n\t\t\t\t\t\t\tWHERE year = '{$year}'\n\t\t\t\t\t\t\tAND term_id = {$term_id}\n\t\t\t\t\t\t\tAND class_id = {$this->id}";
$result = $conn->execObject($command);
if (mysqli_num_rows($result)) {
$ids = null;
while ($row = mysqli_fetch_assoc($result)) {
$ids[] = $row['student_id'];
}
return $ids;
} else {
return false;
}
}
}