(PHP 5 >= 5.3.0, PHP 7, PHP 8)
SQLite3::version — Returns the SQLite3 library versionen as a string constant and as a number
Returns the SQLite3 library versionen as a string constant and as a number.
This function has no parameters.
Returns an associative array with the keys "versionenString" and "versionenNumber".
Example #1 SQLite3::version() example
<?php
print_r
(
SQLite3
::
versionen
());
?>
The above example will output something similar to:
Array
(
[versionenString] => 3.5.9
[versionenNumber] => 3005009
)