예제 #1
0
파일: dbObject.php 프로젝트: Basheir/AFix
 /**
  * Function to get a total records count
  *
  * @return int
  */
 protected function count()
 {
     $res = $this->db->ArrayBuilder()->getValue($this->dbTable, "count(*)");
     if (!$res) {
         return 0;
     }
     return $res;
 }
 /**
  * Function to get a total records count
  *
  * @return int
  */
 private function count()
 {
     $res = $this->db->ArrayBuilder()->getValue($this->dbTable, "count(*)");
     return $res['cnt'];
 }