summaryrefslogtreecommitdiff
path: root/ext/db/tests/005.phpt
blob: 6105f533d899199577068b3b7adf90cf6312c8a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--TEST--
DBM FirstKey/NextKey Loop Test With 5 Items
--SKIPIF--
<?php if (!extension_loaded("db")) print "skip"; ?>
--FILE--
<?php
	require_once('test.inc');
	if (dbmopen($db_file, "n")) {
		dbminsert($db_file, "key1", "Content String 1");
		dbminsert($db_file, "key2", "Content String 2");
		dbminsert($db_file, "key3", "Third Content String");
		dbminsert($db_file, "key4", "Another Content String");
		dbminsert($db_file, "key5", "The last content string");
		$a = dbmfirstkey($db_file);
		$i=0;
		while($a) {
			$a = dbmnextkey($db_file, $a);
			$i++;
		}
		dbmclose($db_file);
		echo $i;
	} else {
		echo "Error creating database\n";
	}
?>
--EXPECT--
5