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

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

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