1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00
Files
archived-php-src/ext/sqlite/tests/blankdb_oo.inc
Marcus Boerger a594c7b714 Fix test shutdown
2003-06-22 19:03:24 +00:00

12 lines
215 B
PHP
Executable File

<?php #vim:ft=php
$dbname = tempnam(dirname(__FILE__), "phpsql");
function cleanup() {
global $db, $dbname;
$db = NULL;
unlink($dbname);
}
register_shutdown_function("cleanup");
$db = new sqlite_db($dbname);
?>