summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/052.phpt
blob: 95fdc2f27c74e1dcc71dd71e570db3f979cce4f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--TEST--
call statement after close
--SKIPIF--
<?php 
require_once('skipif.inc'); 
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
	include "connect.inc";
	
	/************************
	 * statement call  after close 
	 ************************/
	$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket);

	$stmt2 = mysqli_prepare($link, "SELECT CURRENT_USER()");

	mysqli_close($link);
	@mysqli_execute($stmt2);
	@mysqli_stmt_close($stmt2);
	printf("Ok\n");
?>
--EXPECT--
Ok