php-src/ext/mysqli/tests/052.phpt
2004-12-04 08:50:33 +00:00

23 lines
432 B
PHP

--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