当前位置: 首页>>代码示例>>PHP>>正文


PHP School::getCurrentSession方法代码示例

本文整理汇总了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);
 }
开发者ID:sheyooo,项目名称:testify,代码行数:7,代码来源:Student.php

示例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;
         }
     }
 }
开发者ID:sheyooo,项目名称:testify,代码行数:20,代码来源:SchoolClass.php


注:本文中的School::getCurrentSession方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。