SQLite3::loadExtension

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

SQLite3::loadExtensionIntentar cargar una biblioteca de extensiones de SQLite

Descripción

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

Intenta cargar una biblioteca de extensiones de SQLite.

Parámetros

shared_library

El nombre de la biblioteca a cargar. La biblioteca debe estar ubicada en el directorio especificado con la opción de configuración sqlite3.extension_dir.

Valores devueltos

Devuelve true si la extensión es cargada con éxito, false en caso de error.

Ejemplos

Ejemplo #1 Ejemplo de SQLite3::loadExtension()

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

add a note add a note

User Contributed Notes 2 notes

up
0
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.
up
0
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/
To Top