示例#1
0
 /**
  * is there a result left in the resultset
  * @return boolean
  */
 public function nextResult()
 {
     if ($this->currentRow =& mysqli_fetch_assoc($this->currentResult)) {
         foreach ($this->currentRow as $key => $value) {
             $this->currentRow[$key] = ZF::mysqlUnescapeString($value);
         }
         return true;
     } else {
         return false;
     }
 }