PageRenderTime 59ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/hphp/test/zend/bad/ext/mysqli/tests/mysqli_get_host_info.php

http://github.com/facebook/hiphop-php
PHP | 17 lines | 15 code | 1 blank | 1 comment | 14 complexity | acaf16f64cfc373ef807fd206b661eac MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?php
  2. require_once("connect.inc");
  3. $test_table_name = 'test_mysqli_get_host_info_table_1'; require "table.inc";
  4. if (!is_string($info = mysqli_get_host_info($link)) || ('' === $info))
  5. printf("[003] Expecting string/any_non_empty, got %s/%s\n", gettype($info), $info);
  6. if ($IS_MYSQLND && $host != 'localhost' && $host != '127.0.0.1' && $port != '' && $host != "" && strtoupper(substr(PHP_OS, 0, 3)) != 'WIN') {
  7. /* this should be a TCP/IP connection and not a Unix Socket (or SHM or Named Pipe) */
  8. if (!stristr($info, "TCP/IP"))
  9. printf("[004] Should be a TCP/IP connection but mysqlnd says '%s'\n", $info);
  10. }
  11. print "done!";
  12. ?>
  13. <?php error_reporting(0); ?>
  14. <?php
  15. $test_table_name = 'test_mysqli_get_host_info_table_1'; require_once("clean_table.inc");
  16. ?>