cur = $this->set->fetch(\PDO::FETCH_ASSOC); if ($this->cur !== false) { foreach ($this->cur as $k => $v) { if (is_resource($v)) { $this->cur[$k] = stream_get_contents($v); fclose($v); } } return true; } return false; } }