php-src/ext/mysqli/tests/034.phpt
Georg Richter 9751d9afaa Fixed bug #30890 (testsuite)
Fixed bug #28817 (property problems in extended class)
2004-12-04 08:16:04 +00:00

18 lines
282 B
PHP

--TEST--
function test: mysqli_get_proto_info
--FILE--
<?php
include "connect.inc";
/*** test mysqli_connect 127.0.0.1 ***/
$link = mysqli_connect($host, $user, $passwd);
$pinfo = mysqli_get_proto_info($link);
var_dump($pinfo);
mysqli_close($link);
?>
--EXPECT--
int(10)