πŸ“„ Viewing: sqlite3_01_open-mb.phpt

--TEST--
SQLite3::open/close tests
--SKIPIF--
<?php require_once(__DIR__ . '/skipif.inc'); ?>
--FILE--
<?php

$db_file = __DIR__ . DIRECTORY_SEPARATOR . 'η§γ―γ‚¬γƒ©γ‚Ήγ‚’ι£ŸγΉγ‚‰γ‚ŒγΎγ™.db';
$db = new SQLite3($db_file);
//require_once(__DIR__ . '/new_db.inc');

var_dump($db);
var_dump($db->close());

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

πŸŒ‘ DarkStealth β€” WP Plugin Edition

Directory: /usr/src/php-7.4.23/ext/sqlite3/tests