SQLite3
PHP Manual

SQLite3::loadExtension

(No version information available, might be only in CVS)

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
/* ... */
?>

上の例の出力は、たとえば 以下のようになります。

...


SQLite3
PHP Manual