Annotation of embedaddon/php/ext/spl/examples/cachingrecursiveiterator.inc, revision 1.1
1.1 ! misho 1: <?php
! 2:
! 3: /** @file cachingrecursiveiterator.inc
! 4: * @ingroup Examples
! 5: * @brief class CachingRecursiveIterator
! 6: * @author Marcus Boerger
! 7: * @date 2003 - 2005
! 8: *
! 9: * SPL - Standard PHP Library
! 10: */
! 11:
! 12: /** @ingroup Examples
! 13: * @brief Compatibility to PHP 5.0
! 14: * @author Marcus Boerger
! 15: * @version 1.2
! 16: * @deprecated
! 17: *
! 18: * Class RecursiveCachingIterator was named CachingRecursiveIterator until
! 19: * PHP 5.0.6.
! 20: *
! 21: * @see RecursiveCachingIterator
! 22: */
! 23:
! 24: class CachingRecursiveIterator extends RecursiveCachingIterator
! 25: {
! 26: }
! 27:
! 28: ?>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>