blob: 909f78214da957f0d5acc4cc4cd1d09d13cab2df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--TEST--
DBA File Creation Test
--SKIPIF--
<?php
require_once('skipif.inc');
?>
--FILE--
<?php
require_once('test.inc');
if (($db_file=dba_open($db_file, "n", $handler))!==FALSE) {
echo "database file created with $handler.\n";
} else {
echo "$db_file does not exist\n";
}
dba_close($db_file);
?>
--EXPECTF--
database file created with %s.
|