|
SQLite3::versionReturns the SQLite3 library version as a string constant and as a number Beschreibung
public static array SQLite3::version
( void
)
Returns the SQLite3 library version as a string constant and as a number. Parameter-ListeDiese Funktion hat keine Parameter. RückgabewerteReturns an associative array with the keys "versionString" and "versionNumber". Beispiele
Beispiel #1 SQLite3::version example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Array
(
[versionString] => 3.5.9
[versionNumber] => 3005009
)
|