SQLite3::loadExtension

(PHP 5 >= 5.3.0, PHP 7)
Attempts to load an SQLite extension library
public bool SQLite3::loadExtension ( string $shared_library )

Attempts to load an SQLite extension library.

Parameters:
shared_library

The name of the library to load. The library must be located in the directory specified in the configure option sqlite3.extension_dir.

Returns:

Returns TRUE if the extension is successfully loaded, FALSE on failure.

Examples:
SQLite3::loadExtension() example
<?php
$db = new SQLite3('mysqlitedb.db');
$db->loadExtension('libagg.so');
?>

doc_php
2016-02-24 16:18:34
Comments
Leave a Comment

Please login to continue.