Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16430 программистов и 1785 роботов. Сейчас ищет 2051 программист ...
SQLite3::loadExtension - Attempts to load an SQLite extension library
Вернуться к: SQLite3
SQLite3::loadExtension
(PHP 5 >= 5.3.0, PHP 7)
SQLite3::loadExtension — Attempts 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');
?>
Вернуться к: SQLite3