SQLite3::loadExtension

(PHP 5 >= 5.3.0, PHP 7)

SQLite3::loadExtensionAttempts to load an SQLite extension library

Описание

public bool SQLite3::loadExtension ( string $shared_library )

Attempts to load an SQLite extension library.

Список параметров

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 TRUE if the extension is successfully loaded, FALSE on failure.

Примеры

Пример #1 SQLite3::loadExtension() example

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

Коментарии

Автор:
For newbies like me: if loadExtension fails with "Not supported in multithreaded Web servers" message (which always happens on IIS and sometimes - on Apache), you need to use non-thread-safe build of PHP, which is not always a bad idea; see https://www.geeksforgeeks.org/what-is-thread-safe-or-non-thread-safe-in-php/
2020-05-08 22:15:00
http://php5.kiev.ua/manual/ru/sqlite3.loadextension.html
Автор:
One more addition. If you need to setup non-thread-safe PHP on XAMPP/Apache to use loadextension, look at this article: https://paulshipley.id.au/blog/coding-tips/improve-php-performance-with-fastcgi-on-xampp-for-windows/

Tl;dr - you need to install&configure mod_fcgid module for Apache.
2020-05-12 09:51:11
http://php5.kiev.ua/manual/ru/sqlite3.loadextension.html

    Поддержать сайт на родительском проекте КГБ