dba004.phpt 877 B

1234567891011121314151617181920212223242526272829303132
  1. --TEST--
  2. DBA Multiple Insert/Fetch Test
  3. --SKIPIF--
  4. <?php
  5. require_once(dirname(__FILE__) .'/skipif.inc');
  6. die("info $HND handler used");
  7. ?>
  8. --FILE--
  9. <?php
  10. require_once(dirname(__FILE__) .'/test.inc');
  11. echo "database handler: $handler\n";
  12. if (($db_file=dba_open($db_file, "n", $handler))!==FALSE) {
  13. dba_insert("key1", "Content String 1", $db_file);
  14. dba_insert("key2", "Content String 2", $db_file);
  15. dba_insert("key3", "Third Content String", $db_file);
  16. dba_insert("key4", "Another Content String", $db_file);
  17. dba_insert("key5", "The last content string", $db_file);
  18. $a = dba_fetch("key4", $db_file);
  19. $b = dba_fetch("key2", $db_file);
  20. dba_close($db_file);
  21. echo "$a $b";
  22. } else {
  23. echo "Error creating database\n";
  24. }
  25. ?>
  26. --CLEAN--
  27. <?php
  28. require(dirname(__FILE__) .'/clean.inc');
  29. ?>
  30. --EXPECTF--
  31. database handler: %s
  32. Another Content String Content String 2