mysql_max_links.phpt 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. --TEST--
  2. mysql_[p]connect() - max_links/max_persistent
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --INI--
  9. mysql.max_links=2
  10. --FILE--
  11. <?php
  12. require_once('connect.inc');
  13. function my_connect($offset, $host, $user, $passwd, $db, $port, $socket) {
  14. if ($socket)
  15. $host = sprintf("%s:%s", $host, $socket);
  16. else if ($port)
  17. $host = sprintf("%s:%s", $host, $port);
  18. $link = mysql_connect($host, $user, $passwd, true);
  19. if (!$link) {
  20. printf("[%03d] Cannot connect using host '%s', user '%s', password '****', [%d] %s\n",
  21. $offset, $host, $user, $passwd,
  22. mysql_errno(), mysql_error());
  23. return false;
  24. }
  25. return $link;
  26. }
  27. $links = array();
  28. // try to open 3 links
  29. $links[0] = my_connect(10, $host, $user, $passwd, $db, $port, $socket);
  30. $links[1] = my_connect(20, $host, $user, $passwd, $db, $port, $socket);
  31. $links[2] = my_connect(30, $host, $user, $passwd, $db, $port, $socket);
  32. if (false !== $links[2])
  33. printf("[040] Last connection should not have been allowed!\n");
  34. // free some links but let index 1 remain
  35. unset($links[2]);
  36. mysql_close($links[0]);
  37. unset($links[0]);
  38. // should be allowed -> second open connection
  39. $links[0] = my_connect(50, $host, $user, $passwd, $db, $port, $socket);
  40. $links[2] = my_connect(60, $host, $user, $passwd, $db, $port, $socket);
  41. ksort($links);
  42. var_dump($links);
  43. mysql_close($links[0]);
  44. mysql_close($links[1]);
  45. print "done!\n";
  46. ?>
  47. --EXPECTF--
  48. 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
  49. 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
  50. 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
  51. Warning: mysql_connect(): Too many open links (2) in %s on line %s
  52. [030] Cannot connect using host '%s', user '%s', password '****', [0] 0
  53. 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
  54. 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
  55. Warning: mysql_connect(): Too many open links (2) in %s on line %s
  56. [060] Cannot connect using host '%s', user '%s', password '****', [0] 0
  57. array(3) {
  58. [0]=>
  59. resource(%d) of type (mysql link)
  60. [1]=>
  61. resource(%d) of type (mysql link)
  62. [2]=>
  63. bool(false)
  64. }
  65. done!