summaryrefslogtreecommitdiff
path: root/ext/db/tests/003.phpt
blob: 319325c398d32fc30d61454c25d7ada290cc2b37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
DBM Insert/Replace/Fetch Test
--SKIPIF--
<?php if (!extension_loaded("db")) print "skip"; ?>
--POST--
--GET--
--FILE--
<?php
	dbmopen("./test.dbm","n");
	dbminsert("./test.dbm","key1","This is a test insert");
	dbmreplace("./test.dbm","key1","This is the replacement text");
	$a = dbmfetch("./test.dbm","key1");
	dbmclose("./test.dbm");
	echo $a
?>
--EXPECT--
This is the replacement text