PHP 8.5.0 Alpha 2 available for testing

SQLite3::version

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SQLite3::version Devuelve la versión de la biblioteca SQLite3

Descripción

public static SQLite3::version(): array

Devuelve la versión de la biblioteca SQLite3.

Parámetros

Esta función no contiene ningún parámetro.

Valores devueltos

Devuelve un array asociativo que contiene las claves "versionString" y "versionNumber".

Ejemplos

Ejemplo #1 Ejemplo con SQLite3::version()

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

Resultado del ejemplo anterior es similar a :

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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top