Telegram机器人
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
263 B

<?php
class SqliteDB extends SQLite3 { // Sqlite3数据库
public function __construct($filename) {
$this->open($filename); // 打开数据库连接
}
public function __destruct() {
$this->close(); // 关闭数据库连接
}
}
?>