1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/standard/tests/array/reset_basic.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

44 lines
897 B
PHP

--TEST--
Test reset() function : basic functionality
--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
*/
/*
* Test basic functionality of reset()
*/
echo "*** Testing reset() : basic functionality ***\n";
$array = array('zero', 'one', 200 => 'two');
echo "\n-- Initial Position: --\n";
echo key($array) . " => " . current($array) . "\n";
echo "\n-- Call to next() --\n";
var_dump(next($array));
echo "\n-- Current Position: --\n";
echo key($array) . " => " . current($array) . "\n";
echo "\n-- Call to reset() --\n";
var_dump(reset($array));
?>
--EXPECT--
*** Testing reset() : basic functionality ***
-- Initial Position: --
0 => zero
-- Call to next() --
string(3) "one"
-- Current Position: --
1 => one
-- Call to reset() --
string(4) "zero"