コード例 #1
0
ファイル: Filter.php プロジェクト: jgswift/filtratr
 /**
  * Converts statement execution to boolean
  * @param mixed $value
  * @return boolean
  */
 public function execute($value)
 {
     $value = parent::execute($value);
     if (!$value) {
         return false;
     }
     return $value;
 }
コード例 #2
0
ファイル: Sqlsrv.php プロジェクト: heiglandreas/zf2
 /**
  * Returns an array containing all of the result set rows.
  *
  * @param int $style OPTIONAL Fetch mode.
  * @param int $col   OPTIONAL Column number, if fetch mode is by column.
  * @return array Collection of rows, each in a format by the fetch mode.
  *
  * Behaves like parent, but if limit()
  * is used, the final result removes the extra column
  * 'zend_db_rownum'
  */
 public function fetchAll($style = null, $col = null)
 {
     $data = parent::fetchAll($style, $col);
     $results = array();
     $remove = $this->_adapter->foldCase('ZEND_DB_ROWNUM');
     foreach ($data as $row) {
         if (is_array($row) && array_key_exists($remove, $row)) {
             unset($row[$remove]);
         }
         $results[] = $row;
     }
     return $results;
 }
コード例 #3
0
 public function __construct($table)
 {
     parent::__construct($table);
 }