mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
16 lines
228 B
PHP
16 lines
228 B
PHP
--TEST--
|
|
SQLite3::version()
|
|
--SKIPIF--
|
|
<?php require_once(__DIR__ . '/skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
print_r(SQLite3::version());
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Array
|
|
(
|
|
[versionString] => %s
|
|
[versionNumber] => %d
|
|
)
|
|
Done
|