summaryrefslogtreecommitdiff
path: root/ext/sqlite3/tests/sqlite3_01_open.phpt
blob: 11c482722bc1b4964e5ab0fcf416433ae7ed38cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
SQLite3::open/close tests
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php

require_once(dirname(__FILE__) . '/new_db.inc');

var_dump($db);
var_dump($db->close());
echo "Done\n";
?>
--EXPECTF--
object(SQLite3)#%d (0) {
}
bool(true)
Done