SQLite3::loadExtension
PHP function
Edit on GitHub ✎
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
Attempts to load an SQLite extension library
Description
SQLite3::loadExtension(string $name): bool
Attempts to load an SQLite extension library.
Parameters
nameThe name of the library to load. The library must be located in the directory specified in the configure option sqlite3.extension_dir.
Return Values
Returns true if the extension is successfully loaded, false on failure.
Examples
SQLite3::loadExtension() example
php
<?php
$db = new SQLite3('mysqlitedb.db');
$db->loadExtension('libagg.so');
?>