summaryrefslogtreecommitdiff
path: root/ext/db/tests/001.phpt
blob: a18e79a82b4c1cdd6fee2ea9fe9284af550a73d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
DBM File Creation Test
--SKIPIF--
<?php if (!extension_loaded("db")) print "skip"; ?>
--FILE--
<?php
	require_once('test.inc');
	if (dbmopen($db_file, "n") && file_exists($db_file)) {
    	echo "database file created\n";
	} else {
    	echo "$db_file does not exist\n";
    }
	dbmclose($db_file);
?>
--EXPECT--
database file created