SQLite3::version

(PHP 5 >= 5.3.0, PHP 7)

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

说明

public static SQLite3::version ( void ) : array

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

参数

此函数没有参数。

返回值

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

范例

Example #1 SQLite3::version() example

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

以上例程的输出类似于:

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

相关文章
php deque returns the number of values in the collectionphp ibm db2 函数 returns the number of fields contained in a result setphp ibm db2 函数 returns a string containing the last sql statement error messagephp rpm reader 函数 returns a string representing the current version of the rpmreader extensionphp sqlite 函数 returns the number of rows that were changed by the most recent sql statementphp sqlite 函数 returns the name of a particular fieldphp sqlite 函数 returns the number of fields in a result setphp sqlite 函数 returns the number of rows in a buffered result setphp sqlite 函数 seek to the first row numberphp sqlite 函数 seek to a particular row number of a buffered result setphp yaz 函数 returns error numberphp mongodb bson decimal128interface returns the string representation of this decimal128interfacephp mysqli stmt returns the total number of rows changed deleted or inserted by the last executed statementphp mysqli returns the number of columns for the most recent queryphp solrquery returns the maximum number of highlighted snippets to generate per fieldphp sqlite3 returns the number of database rows that were changed or inserted or deleted by the most recent sql statementphp sqlite3 returns a string that has been properly escapedphp sqlite3 returns the sqlite3 library version as a string constant and as a numberphp sqlite3result returns the number of columns in the result setphp sqlite3stmt returns the number of parameters within the prepared statement
关注编程学问公众号