コード例 #1
0
ファイル: Query.php プロジェクト: subashemphasize/test_site
 function addHaving($expr, $_ = null)
 {
     $queryAndArgs = func_get_args();
     if (count($queryAndArgs) > 1) {
         $this->db->_expandPlaceholders($queryAndArgs);
     }
     $this->having[] = $queryAndArgs[0];
     return $this;
 }