File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / spl / tests / array_020.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:01 2012 UTC (12 years, 6 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
SPL: ArrayIterator overloading
--FILE--
<?php

class ArrayIteratorEx extends ArrayIterator
{
	function rewind()
	{
		echo __METHOD__ . "\n";
		ArrayIterator::rewind();
	}

	function valid()
	{
		echo __METHOD__ . "\n";
		return ArrayIterator::valid();
	}

	function key()
	{
		echo __METHOD__ . "\n";
		return ArrayIterator::key();
	}

	function current()
	{
		echo __METHOD__ . "\n";
		return ArrayIterator::current();
	}

	function next()
	{
		echo __METHOD__ . "\n";
		return ArrayIterator::next();
	}
}

$ar = new ArrayIteratorEx(array(1,2));
foreach($ar as $k => $v)
{
	var_dump($k);
	var_dump($v);
}

?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
ArrayIteratorEx::rewind
ArrayIteratorEx::valid
ArrayIteratorEx::current
ArrayIteratorEx::key
int(0)
int(1)
ArrayIteratorEx::next
ArrayIteratorEx::valid
ArrayIteratorEx::current
ArrayIteratorEx::key
int(1)
int(2)
ArrayIteratorEx::next
ArrayIteratorEx::valid
===DONE===

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>