summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/027.phpt
blob: 9f8eadf9ddc345ac31b23c4f6aab0f674ef3cd9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
function test: mysqli_stat
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
	include "connect.inc";
	
	/*** test mysqli_connect 127.0.0.1 ***/
	$link = mysqli_connect($host, $user, $passwd);

	$status = mysqli_stat($link);


	var_dump(strlen($status) > 0);

	mysqli_close($link);
?>
--EXPECT--
bool(true)