SQLite3::loadExtension

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SQLite3::loadExtensionSQLite 拡張ライブラリを読み込む

説明

public SQLite3::loadExtension(string $name): bool

SQLite 拡張ライブラリを読み込みます。

パラメータ

name

読み込みたいライブラリの名前。ライブラリは、設定オプション sqlite3.extension_dir で指定したディレクトリになければなりません。

戻り値

拡張ライブラリの読み込みに成功した場合に true、 失敗した場合に false を返します。

例1 SQLite3::loadExtension() の例

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

add a note

User Contributed Notes 2 notes

up
1
RollingHog
3 years ago
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/
up
1
RollingHog
3 years ago
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.
To Top