mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
PHP
--TEST--
|
|
mysqli_stmt_fetch_fields() unicode, win32
|
|
--EXTENSIONS--
|
|
mysqli
|
|
--SKIPIF--
|
|
<?php
|
|
require_once 'skipifconnectfailure.inc';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require_once 'connect.inc';
|
|
require_once 'table.inc';
|
|
|
|
$bind_res = $id = null;
|
|
if (!($stmt = mysqli_stmt_init($link)) ||
|
|
!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test") ||
|
|
!mysqli_stmt_execute($stmt) ||
|
|
!($result = mysqli_stmt_result_metadata($stmt)) ||
|
|
!mysqli_stmt_bind_result($stmt, $id, $bind_res) ||
|
|
[] === mysqli_fetch_fields($result)) {
|
|
printf("FAIL 1\n");
|
|
}
|
|
while (mysqli_stmt_fetch($stmt)) {
|
|
;
|
|
}
|
|
mysqli_free_result($result);
|
|
mysqli_stmt_close($stmt);
|
|
|
|
if (!($stmt = mysqli_stmt_init($link)) ||
|
|
!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test") ||
|
|
!mysqli_stmt_execute($stmt) ||
|
|
!($result = mysqli_stmt_result_metadata($stmt)) ||
|
|
!mysqli_stmt_bind_result($stmt, $id, $bind_res)) {
|
|
printf("FAIL 2\n");
|
|
}
|
|
print "OK: 1\n";
|
|
if ([] === mysqli_fetch_fields($result))
|
|
printf("Aua 3\n");
|
|
print "OK: 2\n";
|
|
while (mysqli_stmt_fetch($stmt)) {
|
|
;
|
|
}
|
|
mysqli_free_result($result);
|
|
mysqli_stmt_close($stmt);
|
|
|
|
mysqli_close($link);
|
|
print "done!";
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
require_once 'clean_table.inc';
|
|
?>
|
|
--EXPECT--
|
|
OK: 1
|
|
OK: 2
|
|
done!
|