SQLite3::close
SQLite3::close
(PHP 5 >= 5.3.0, PHP 7)
SQLite3::close - 关闭数据库连接
描述
public bool SQLite3::close ( void )
关闭数据库连接。
参数
该函数没有参数。
返回值
TRUE
成功时或失败返回FALSE
。
示例
Example #1 SQLite3::close() example
<?php
$db = new SQLite3('mysqlitedb.db'
$db->close(
?>
← SQLite3::changes
SQLite3::__construct →