PHP

SQLite3::loadExtension

SQLite3::loadExtension

(PHP 5 >= 5.3.0, PHP 7)

SQLite3::loadExtension - 尝试加载SQLite扩展库

描述

public bool SQLite3::loadExtension ( string $shared_library )

尝试加载SQLite扩展库。

参数

shared_library

要加载的库的名称。该库必须位于configure选项sqlite3.extension_dir中指定的目录中。

返回值

如果扩展成功加载返回TRUE,失败则返回FALSE

示例

Example #1 SQLite3::loadExtension() example

<?php $db = new SQLite3('mysqlitedb.db' $db->loadExtension('libagg.so' ?>

← SQLite3::lastInsertRowID

SQLite3::open →