SQLite3
PHP Manual

SQLite3::version

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

SQLite3::version Returns the SQLite3 library version as a string constant and as a number

説明

public array SQLite3::version ( void )

Returns the SQLite3 library version as a string constant and as a number.

パラメータ

この関数にはパラメータはありません。

返り値

Returns an associative array with the keys "versionString" and "versionNumber".

例1 SQLite3::version() example

<?php
print_r
(SQLite3::version());
?>

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

Array
(
    [versionString] => 3.5.9
    [versionNumber] => 3005009
)


SQLite3
PHP Manual