mysql_pconn_disable.phpt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. --TEST--
  2. mysql_pconnect() - disabling feature
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifconnectfailure.inc');
  7. ?>
  8. --INI--
  9. mysql.allow_persistent=0
  10. mysql.max_persistent=1
  11. mysql.max_links=2
  12. --FILE--
  13. <?php
  14. require_once("connect.inc");
  15. require_once("table.inc");
  16. if (($plink = my_mysql_connect($host, $user, $passwd, $db, $port, $socket, NULL, true)))
  17. printf("[001] Can connect to the server.\n");
  18. if (($res = mysql_query('SELECT id FROM test ORDER BY id ASC', $plink)) &&
  19. ($row = mysql_fetch_assoc($res)) &&
  20. (mysql_free_result($res))) {
  21. printf("[002] Can fetch data using persistent connection! Data = '%s'\n",
  22. $row['id']);
  23. }
  24. $thread_id = mysql_thread_id($plink);
  25. mysql_close($plink);
  26. if (!($plink = my_mysql_connect($host, $user, $passwd, $db, $port, $socket, NULL, true)))
  27. printf("[003] Cannot connect, [%d] %s\n", mysql_errno(), mysql_error());
  28. if (mysql_thread_id($plink) != $thread_id)
  29. printf("[004] Looks like the second call to pconnect() did not give us the same connection.\n");
  30. $thread_id = mysql_thread_id($plink);
  31. mysql_close($plink);
  32. if (!($plink = my_mysql_connect($host, $user, $passwd, $db, $port, $socket)))
  33. printf("[005] Cannot connect, [%d] %s\n", mysql_errno(), mysql_error());
  34. if (mysql_thread_id($plink) == $thread_id)
  35. printf("[006] Looks like connect() did not return a new connection.\n");
  36. print "done!";
  37. ?>
  38. --CLEAN--
  39. <?php
  40. require_once("clean_table.inc");
  41. ?>
  42. --EXPECTF--
  43. 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
  44. Deprecated: mysql_pconnect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  45. [001] Can connect to the server.
  46. [002] Can fetch data using persistent connection! Data = '1'
  47. Deprecated: mysql_pconnect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in %s on line %d
  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. done!