php-src/ext/standard/tests/array/reset_variation2.phpt
Steph Fox 833f4150a1 - killed off UEXPECT
- could someone please fix var_export2.phpt? NUL is corrupted, can't fix here
2008-05-26 23:36:10 +00:00

35 lines
801 B
PHP

--TEST--
Test reset() function : usage variations - unset first element
--FILE--
<?php
/* Prototype : mixed reset(array $array_arg)
* Description: Set array argument's internal pointer to the first element and return it
* Source code: ext/standard/array.c
*/
/*
* Unset first element of an array and test behaviour of reset()
*/
echo "*** Testing reset() : usage variations ***\n";
$array = array('a', 'b', 'c');
echo "\n-- Initial Position: --\n";
echo current($array) . " => " . key($array) . "\n";
echo "\n-- Unset First element in array and check reset() --\n";
unset($array[0]);
var_dump(reset($array));
?>
===DONE===
--EXPECT--
*** Testing reset() : usage variations ***
-- Initial Position: --
a => 0
-- Unset First element in array and check reset() --
unicode(1) "b"
===DONE===