public function groupException($where) { $rowset = App_Model_Show_AroGroupMap::show()->getGroupException($where); for ($i = 0; $i < count($rowset); $i++) { $aReturn[$i] = $rowset[$i]['value']; } return isset($aReturn) ? $aReturn : ''; }
/** * @return obj */ public function show() { if (!isset(self::$_instance)) { $show = __CLASS__; self::$_instance = new $show(); } return self::$_instance; }