PHP Portal » PHP Handbuch » SQLite3::loadExtension

Werbung

SQLite3::loadExtension


(PHP 5 >= 5.3.0)

SQLite3::loadExtensionAttempts to load an SQLite extension library

Beschreibung

public bool SQLite3::loadExtension ( string $shared_library )

Attempts to load an SQLite extension library.

Parameter-Liste

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.

Rückgabewerte

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

Beispiele

PHP Code
1
2
$db = new SQLite3('mysqlitedb.db'); $db->loadExtension('libagg.so');