PHP

SQLite3::version

SQLite3::version

(PHP 5 >= 5.3.0, PHP 7)

SQLite3::version - 将SQLite3库版本作为字符串常量和数字返回

描述

public static array SQLite3::version ( void )

将SQLite3库版本作为字符串常量和数字返回。

参数

该函数没有参数。

返回值

使用键“versionString”和“versionNumber”返回一个关联数组。

示例

Example #1 SQLite3::version() example

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

上面的例子会输出类似于:

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

← SQLite3::querySingle

SQLite3Stmt →