mysql_thread_id.phpt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --TEST--
  2. mysql_thread_id()
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --FILE--
  9. <?php
  10. include_once "connect.inc";
  11. $tmp = NULL;
  12. $link = NULL;
  13. if (!is_null($tmp = @mysql_thread_id($link)))
  14. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  15. require('table.inc');
  16. if (!is_int($id = mysql_thread_id($link)) || (0 === $id))
  17. printf("[002] Expecting int/any but zero, got %s/%s. [%d] %s\n",
  18. gettype($id), $id, mysql_errno($link), mysql_error($link));
  19. if (!is_int($id_def = mysql_thread_id()) || (0 === $id_def))
  20. printf("[003] Expecting int/any but zero, got %s/%s. [%d] %s\n",
  21. gettype($id_def), $id_def, mysql_errno(), mysql_error());
  22. assert($id === $id_def);
  23. mysql_close($link);
  24. if (false !== ($tmp = mysql_thread_id($link)))
  25. printf("[003] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  26. print "done!";
  27. ?>
  28. --EXPECTF--
  29. 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
  30. Warning: mysql_thread_id(): %d is not a valid MySQL-Link resource in %s on line %d
  31. done!