1--TEST--
2mysqli_get_proto_info()
3--SKIPIF--
4<?php
5require_once('skipif.inc');
6require_once('skipifemb.inc');
7require_once('skipifconnectfailure.inc');
8?>
9--FILE--
10<?php
11    require_once("connect.inc");
12
13    if (!is_null($tmp = @mysqli_get_proto_info()))
14        printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
15
16    if (!is_null($tmp = @mysqli_get_proto_info(NULL)))
17        printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
18
19    require "table.inc";
20    if (!is_int($info = mysqli_get_proto_info($link)) || ($info < 1))
21        printf("[003] Expecting int/any_non_empty, got %s/%s\n", gettype($info), $info);
22
23    if (!is_null($tmp = @mysqli_get_proto_info('too many', 'arguments')))
24        printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
25
26    print "done!";
27?>
28--EXPECT--
29done!
30