1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/sqlite3/tests/sqlite3_17_version.phpt
2016-09-03 00:56:09 +02:00

17 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