2017
04-18
04-18
PHP面向对象操作SQLite
自 PHP 5.3.0 起默认启用 SQLite3 扩展。可以在编译时使用 --without-sqlite3 禁用 SQLite3 扩展。
SQLite3::open ( filename, flags, encryption_key ):打开一个 SQLite 3 数据库。如果构建包括加密,那么它将尝试使用的密钥。
如果文件名 filename 赋值为 ':memory:',那么 SQLi.... Read More >