哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

SQLite3::loadExtension

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

SQLite3::loadExtensionAttempts to load an SQLite extension library

说明

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

Attempts to load an SQLite extension library.

参数

name

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');
?>
打开 哈希空间 微信小程序中查看更佳