function postlist_begin($tname) { $r = Database_postlist_begin($this->_cPtr, $tname); if (is_resource($r)) { $c = 'Xapian' . substr(get_resource_type($r), strpos(get_resource_type($r), '__') ? strpos(get_resource_type($r), '__') + 2 : 3); if (class_exists($c)) { return new $c($r); } return new XapianPostingIterator($r); } return $r; }
function postlist_begin($tname) { $r = Database_postlist_begin($this->_cPtr, $tname); return is_resource($r) ? new XapianPostingIterator($r) : $r; }