mysql_fetch_row.phpt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. --TEST--
  2. mysql_fetch_row()
  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_fetch_row()))
  14. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  15. if (NULL !== ($tmp = @mysql_fetch_row($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 1", $link)) {
  19. printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
  20. }
  21. print "[004]\n";
  22. var_dump(mysql_fetch_row($res));
  23. print "[005]\n";
  24. var_dump(mysql_fetch_row($res));
  25. mysql_free_result($res);
  26. var_dump(mysql_fetch_row($res));
  27. mysql_close($link);
  28. print "done!";
  29. ?>
  30. --CLEAN--
  31. <?php
  32. require_once("clean_table.inc");
  33. ?>
  34. --EXPECTF--
  35. 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
  36. [004]
  37. array(2) {
  38. [0]=>
  39. %unicode|string%(1) "1"
  40. [1]=>
  41. %unicode|string%(1) "a"
  42. }
  43. [005]
  44. bool(false)
  45. Warning: mysql_fetch_row(): %d is not a valid MySQL result resource in %s on line %d
  46. bool(false)
  47. done!