1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 23:48:14 +02:00
Files
archived-php-src/ext/mysqli/tests/053.phpt
T
2003-02-17 23:29:58 +00:00

19 lines
320 B
PHP

--TEST--
not freed resultset
--FILE--
<?php
include "connect.inc";
/************************
* non freed resultset
************************/
$link = mysqli_connect("localhost", $user, $passwd);
$result = mysqli_query($link, "SELECT CURRENT_USER()");
mysqli_close($link);
printf("Ok\n");
?>
--EXPECT--
Ok