php-src/ext/mysqli/tests/033.phpt

21 lines
399 B
Plaintext
Raw Normal View History

2003-02-12 00:46:29 +00:00
--TEST--
function test: mysqli_get_host_info
2004-12-04 08:50:33 +00:00
--SKIPIF--
<?php require_once('skipif.inc'); ?>
<?php require_once('skipifemb.inc'); ?>
2003-02-12 00:46:29 +00:00
--FILE--
<?php
include "connect.inc";
2003-02-12 00:46:29 +00:00
/*** test mysqli_connect 127.0.0.1 ***/
$link = mysqli_connect($host, $user, $passwd);
2003-02-12 00:46:29 +00:00
$hinfo = mysqli_get_host_info($link);
var_dump($hinfo);
mysqli_close($link);
?>
--EXPECT--
string(25) "Localhost via UNIX socket"