note 98166 deleted from class.seekableiterator by danbrown
| Newsgroups | php.notes |
|---|---|
| Message-ID | <[email protected]> |
Note Submitter: simple dot square at gmail dot com
----
yet better way would be to use instanceof:
<?php
if($items instanceof SeekableIterator) {
// .. we certainly have seek method
}
?>