summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/end_basic.phpt
diff options
context:
space:
mode:
authorJosie Messa <jmessa@php.net>2008-02-21 16:39:02 +0000
committerJosie Messa <jmessa@php.net>2008-02-21 16:39:02 +0000
commit2151ce6ba9ee474cf2a34d9e4b82be7fc4835771 (patch)
tree5e3340a87cebb1ad6374e1fb922ba8aee88fc3fe /ext/standard/tests/array/end_basic.phpt
parent18cc21c66266b86ba255301c25cfb08de786f112 (diff)
downloadphp-git-2151ce6ba9ee474cf2a34d9e4b82be7fc4835771.tar.gz
- New tests for end() and next() function
Diffstat (limited to 'ext/standard/tests/array/end_basic.phpt')
-rw-r--r--ext/standard/tests/array/end_basic.phpt46
1 files changed, 46 insertions, 0 deletions
diff --git a/ext/standard/tests/array/end_basic.phpt b/ext/standard/tests/array/end_basic.phpt
new file mode 100644
index 0000000000..5a6606d381
--- /dev/null
+++ b/ext/standard/tests/array/end_basic.phpt
@@ -0,0 +1,46 @@
+--TEST--
+Test end() function : basic functionality
+--FILE--
+<?php
+/* Prototype : mixed end(array $array_arg)
+ * Description: Advances array argument's internal pointer to the last element and return it
+ * Source code: ext/standard/array.c
+ */
+
+/*
+ * Test basic functionality of end()
+ */
+
+echo "*** Testing end() : basic functionality ***\n";
+
+$array = array('zero', 'one', 200 => 'two');
+
+echo "\n-- Initial Position: --\n";
+echo key($array) . " => " . current($array) . "\n";
+
+echo "\n-- Call to end() --\n";
+var_dump(end($array));
+
+echo "\n-- Current Position: --\n";
+echo key($array) . " => " . current($array) . "\n";
+
+echo "\n-- Add a new element to array --\n";
+$array[2] = 'foo';
+var_dump(end($array));
+?>
+===DONE===
+--EXPECTF--
+*** Testing end() : basic functionality ***
+
+-- Initial Position: --
+0 => zero
+
+-- Call to end() --
+string(3) "two"
+
+-- Current Position: --
+200 => two
+
+-- Add a new element to array --
+string(3) "foo"
+===DONE===