array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'sqlite3.version.php', 1 => 'SQLite3::version', 2 => 'Returns the SQLite3 library version as a string constant and as a number', ), 'up' => array ( 0 => 'class.sqlite3.php', 1 => 'SQLite3', ), 'prev' => array ( 0 => 'sqlite3.setauthorizer.php', 1 => 'SQLite3::setAuthorizer', ), 'next' => array ( 0 => 'class.sqlite3exception.php', 1 => 'SQLite3Exception', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/sqlite3/sqlite3/version.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
SQLite3::version — Returns the SQLite3 library version as a string constant and as a number
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 )