mysql_field_table.phpt 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. --TEST--
  2. mysql_field_table()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. include "connect.inc";
  11. $tmp = NULL;
  12. $link = NULL;
  13. if (!is_null($tmp = @mysql_field_table()))
  14. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  15. if (null !== ($tmp = @mysql_field_table($link)))
  16. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  17. require('table.inc');
  18. if (!$res = mysql_query("SELECT id, label FROM test ORDER BY id LIMIT 2", $link)) {
  19. printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
  20. }
  21. if (NULL !== ($tmp = mysql_field_table($res)))
  22. printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  23. if (false !== ($tmp = mysql_field_table($res, -1)))
  24. printf("[005] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  25. var_dump(mysql_field_table($res, 0));
  26. if (false !== ($tmp = mysql_field_table($res, 2)))
  27. printf("[008] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  28. mysql_free_result($res);
  29. var_dump(mysql_field_table($res, 0));
  30. mysql_close($link);
  31. print "done!";
  32. ?>
  33. --CLEAN--
  34. <?php
  35. require_once("clean_table.inc");
  36. ?>
  37. --EXPECTF--
  38. Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  39. Warning: mysql_field_table() expects exactly 2 parameters, 1 given in %s on line %d
  40. Warning: mysql_field_table(): Field -1 is invalid for MySQL result index %d in %s on line %d
  41. %unicode|string%(4) "test"
  42. Warning: mysql_field_table(): Field 2 is invalid for MySQL result index %d in %s on line %d
  43. Warning: mysql_field_table(): %d is not a valid MySQL result resource in %s on line %d
  44. bool(false)
  45. done!