xref: /PHP-7.4/ext/dba/tests/dba001.phpt (revision 26dfce7f)
1--TEST--
2DBA File Creation Test
3--SKIPIF--
4<?php
5	require_once(__DIR__ .'/skipif.inc');
6	die("info $HND handler used");
7?>
8--FILE--
9<?php
10	require_once(__DIR__ .'/test.inc');
11	echo "database handler: $handler\n";
12	if (($db_file=dba_open($db_file, "n", $handler))!==FALSE) {
13    	echo "database file created\n";
14		dba_close($db_file);
15	} else {
16    	echo "$db_file does not exist\n";
17    }
18?>
19--CLEAN--
20<?php
21	require(__DIR__ .'/clean.inc');
22?>
23--EXPECTF--
24database handler: %s
25database file created
26