You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
238 B

18 years ago
  1. --TEST--
  2. SQLite3::version()
  3. --SKIPIF--
  4. <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
  5. --FILE--
  6. <?php
  7. print_r(SQLite3::version());
  8. echo "Done\n";
  9. ?>
  10. --EXPECTF--
  11. Array
  12. (
  13. [versionString] => %s
  14. [versionNumber] => %d
  15. )
  16. Done